Created
March 20, 2021 15:50
-
-
Save adamnovotnycom/ffe8e3961fe0207c64a1b9a074883e51 to your computer and use it in GitHub Desktop.
colab_auto_sklearn_profiler.ipynb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nbformat": 4, | |
"nbformat_minor": 0, | |
"metadata": { | |
"colab": { | |
"name": "colab_auto_sklearn_profiler.ipynb", | |
"provenance": [], | |
"collapsed_sections": [], | |
"mount_file_id": "11_t63audBgQMHVGIIfSgp_Dp1sCbKRHy", | |
"authorship_tag": "ABX9TyO/+yKS3cAfiIwYjZH3gNkF", | |
"include_colab_link": true | |
}, | |
"kernelspec": { | |
"display_name": "Python 3", | |
"name": "python3" | |
} | |
}, | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "view-in-github", | |
"colab_type": "text" | |
}, | |
"source": [ | |
"<a href=\"https://colab.research.google.com/gist/adamnovotnycom/ffe8e3961fe0207c64a1b9a074883e51/colab_auto_sklearn_profiler.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "MXByWp-mQKTp", | |
"outputId": "996196dc-9e6a-4b17-f7fc-88ae7d2011ed" | |
}, | |
"source": [ | |
"import numpy as np\n", | |
"import os\n", | |
"import pandas as pd\n", | |
"import plotly.express as px\n", | |
"import random\n", | |
"import sys\n", | |
"from sklearn.base import BaseEstimator, TransformerMixin\n", | |
"from sklearn.datasets import make_regression\n", | |
"from sklearn.ensemble import RandomForestRegressor\n", | |
"from sklearn.impute import SimpleImputer\n", | |
"from sklearn.linear_model import ElasticNet\n", | |
"from sklearn.metrics import r2_score\n", | |
"from sklearn.model_selection import GridSearchCV, TimeSeriesSplit\n", | |
"from sklearn.pipeline import FeatureUnion, Pipeline \n", | |
"from sklearn.preprocessing import StandardScaler, OneHotEncoder\n", | |
"from sklearn.svm import SVR\n", | |
"print(sys.version)\n", | |
"print(pd.__version__)" | |
], | |
"execution_count": 1, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"3.7.10 (default, Feb 20 2021, 21:17:23) \n", | |
"[GCC 7.5.0]\n", | |
"1.1.5\n" | |
], | |
"name": "stdout" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"id": "Gkl01MkHby2x", | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"outputId": "2e3c6309-edb8-4681-cf02-be7ee07e76d5" | |
}, | |
"source": [ | |
"if pd.__version__[0] == \"0\":\n", | |
" !pip install pandas==1.1.5\n", | |
" import pandas as pd\n", | |
"assert pd.__version__[0] == \"1\"\n", | |
"print(pd.__version__) " | |
], | |
"execution_count": 2, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"1.1.5\n" | |
], | |
"name": "stdout" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "uazEb54Ucs6D", | |
"outputId": "38c78e1c-58fc-4de7-8e63-1440fbbb90a2" | |
}, | |
"source": [ | |
"!sudo apt-get install build-essential swig\n", | |
"!pip install -U tornado\n", | |
"!pip install dask distributed --upgrade\n", | |
"!pip install auto-sklearn==0.11.1\n", | |
"!pip install pipelineprofiler" | |
], | |
"execution_count": 3, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"Reading package lists... Done\n", | |
"Building dependency tree \n", | |
"Reading state information... Done\n", | |
"build-essential is already the newest version (12.4ubuntu1).\n", | |
"swig is already the newest version (3.0.12-1).\n", | |
"0 upgraded, 0 newly installed, 0 to remove and 30 not upgraded.\n", | |
"Requirement already up-to-date: tornado in /usr/local/lib/python3.7/dist-packages (6.1)\n", | |
"Requirement already up-to-date: dask in /usr/local/lib/python3.7/dist-packages (2021.3.0)\n", | |
"Requirement already up-to-date: distributed in /usr/local/lib/python3.7/dist-packages (2021.3.0)\n", | |
"Requirement already satisfied, skipping upgrade: pyyaml in /usr/local/lib/python3.7/dist-packages (from dask) (3.13)\n", | |
"Requirement already satisfied, skipping upgrade: setuptools in /usr/local/lib/python3.7/dist-packages (from distributed) (54.1.2)\n", | |
"Requirement already satisfied, skipping upgrade: click>=6.6 in /usr/local/lib/python3.7/dist-packages (from distributed) (7.1.2)\n", | |
"Requirement already satisfied, skipping upgrade: psutil>=5.0 in /usr/local/lib/python3.7/dist-packages (from distributed) (5.4.8)\n", | |
"Requirement already satisfied, skipping upgrade: toolz>=0.8.2 in /usr/local/lib/python3.7/dist-packages (from distributed) (0.11.1)\n", | |
"Requirement already satisfied, skipping upgrade: cloudpickle>=1.5.0 in /usr/local/lib/python3.7/dist-packages (from distributed) (1.6.0)\n", | |
"Requirement already satisfied, skipping upgrade: msgpack>=0.6.0 in /usr/local/lib/python3.7/dist-packages (from distributed) (1.0.2)\n", | |
"Requirement already satisfied, skipping upgrade: tblib>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from distributed) (1.7.0)\n", | |
"Requirement already satisfied, skipping upgrade: zict>=0.1.3 in /usr/local/lib/python3.7/dist-packages (from distributed) (2.0.0)\n", | |
"Requirement already satisfied, skipping upgrade: tornado>=5; python_version < \"3.8\" in /usr/local/lib/python3.7/dist-packages (from distributed) (6.1)\n", | |
"Requirement already satisfied, skipping upgrade: sortedcontainers!=2.0.0,!=2.0.1 in /usr/local/lib/python3.7/dist-packages (from distributed) (2.3.0)\n", | |
"Requirement already satisfied, skipping upgrade: heapdict in /usr/local/lib/python3.7/dist-packages (from zict>=0.1.3->distributed) (1.0.1)\n", | |
"Requirement already satisfied: auto-sklearn==0.11.1 in /usr/local/lib/python3.7/dist-packages (0.11.1)\n", | |
"Requirement already satisfied: pynisher>=0.6.1 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.6.4)\n", | |
"Requirement already satisfied: distributed>=2.2.0 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (2021.3.0)\n", | |
"Requirement already satisfied: pyyaml in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (3.13)\n", | |
"Requirement already satisfied: liac-arff in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (2.5.0)\n", | |
"Requirement already satisfied: numpy>=1.9.0 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (1.19.5)\n", | |
"Requirement already satisfied: scikit-learn<0.23,>=0.22.0 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.22.2.post1)\n", | |
"Requirement already satisfied: lockfile in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.12.2)\n", | |
"Requirement already satisfied: pandas>=1.0 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (1.1.5)\n", | |
"Requirement already satisfied: pyrfr<0.9,>=0.7 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.8.1)\n", | |
"Requirement already satisfied: smac<0.14,>=0.13.1 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.13.1)\n", | |
"Requirement already satisfied: ConfigSpace<0.5,>=0.4.14 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (0.4.18)\n", | |
"Requirement already satisfied: scipy>=0.14.1 in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (1.4.1)\n", | |
"Requirement already satisfied: joblib in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (1.0.1)\n", | |
"Requirement already satisfied: setuptools in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (54.1.2)\n", | |
"Requirement already satisfied: dask in /usr/local/lib/python3.7/dist-packages (from auto-sklearn==0.11.1) (2021.3.0)\n", | |
"Requirement already satisfied: psutil in /usr/local/lib/python3.7/dist-packages (from pynisher>=0.6.1->auto-sklearn==0.11.1) (5.4.8)\n", | |
"Requirement already satisfied: toolz>=0.8.2 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (0.11.1)\n", | |
"Requirement already satisfied: sortedcontainers!=2.0.0,!=2.0.1 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (2.3.0)\n", | |
"Requirement already satisfied: zict>=0.1.3 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (2.0.0)\n", | |
"Requirement already satisfied: click>=6.6 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (7.1.2)\n", | |
"Requirement already satisfied: cloudpickle>=1.5.0 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (1.6.0)\n", | |
"Requirement already satisfied: tblib>=1.6.0 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (1.7.0)\n", | |
"Requirement already satisfied: tornado>=5; python_version < \"3.8\" in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (6.1)\n", | |
"Requirement already satisfied: msgpack>=0.6.0 in /usr/local/lib/python3.7/dist-packages (from distributed>=2.2.0->auto-sklearn==0.11.1) (1.0.2)\n", | |
"Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.7/dist-packages (from pandas>=1.0->auto-sklearn==0.11.1) (2018.9)\n", | |
"Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.7/dist-packages (from pandas>=1.0->auto-sklearn==0.11.1) (2.8.1)\n", | |
"Requirement already satisfied: lazy-import in /usr/local/lib/python3.7/dist-packages (from smac<0.14,>=0.13.1->auto-sklearn==0.11.1) (0.2.2)\n", | |
"Requirement already satisfied: cython in /usr/local/lib/python3.7/dist-packages (from ConfigSpace<0.5,>=0.4.14->auto-sklearn==0.11.1) (0.29.22)\n", | |
"Requirement already satisfied: pyparsing in /usr/local/lib/python3.7/dist-packages (from ConfigSpace<0.5,>=0.4.14->auto-sklearn==0.11.1) (2.4.7)\n", | |
"Requirement already satisfied: heapdict in /usr/local/lib/python3.7/dist-packages (from zict>=0.1.3->distributed>=2.2.0->auto-sklearn==0.11.1) (1.0.1)\n", | |
"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil>=2.7.3->pandas>=1.0->auto-sklearn==0.11.1) (1.15.0)\n", | |
"Requirement already satisfied: pipelineprofiler in /usr/local/lib/python3.7/dist-packages (0.1.17)\n", | |
"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (0.22.2.post1)\n", | |
"Requirement already satisfied: networkx in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (2.5)\n", | |
"Requirement already satisfied: python-dateutil in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (2.8.1)\n", | |
"Requirement already satisfied: scipy in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (1.4.1)\n", | |
"Requirement already satisfied: numpy in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (1.19.5)\n", | |
"Requirement already satisfied: notebook in /usr/local/lib/python3.7/dist-packages (from pipelineprofiler) (5.3.1)\n", | |
"Requirement already satisfied: joblib>=0.11 in /usr/local/lib/python3.7/dist-packages (from scikit-learn->pipelineprofiler) (1.0.1)\n", | |
"Requirement already satisfied: decorator>=4.3.0 in /usr/local/lib/python3.7/dist-packages (from networkx->pipelineprofiler) (4.4.2)\n", | |
"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.7/dist-packages (from python-dateutil->pipelineprofiler) (1.15.0)\n", | |
"Requirement already satisfied: nbformat in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (5.1.2)\n", | |
"Requirement already satisfied: Send2Trash in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (1.5.0)\n", | |
"Requirement already satisfied: jupyter-client>=5.2.0 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (5.3.5)\n", | |
"Requirement already satisfied: tornado>=4 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (6.1)\n", | |
"Requirement already satisfied: jinja2 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (2.11.3)\n", | |
"Requirement already satisfied: jupyter-core>=4.4.0 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (4.7.1)\n", | |
"Requirement already satisfied: ipykernel in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (4.10.1)\n", | |
"Requirement already satisfied: nbconvert in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (5.6.1)\n", | |
"Requirement already satisfied: traitlets>=4.2.1 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (5.0.5)\n", | |
"Requirement already satisfied: terminado>=0.8.1 in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (0.9.2)\n", | |
"Requirement already satisfied: ipython-genutils in /usr/local/lib/python3.7/dist-packages (from notebook->pipelineprofiler) (0.2.0)\n", | |
"Requirement already satisfied: jsonschema!=2.5.0,>=2.4 in /usr/local/lib/python3.7/dist-packages (from nbformat->notebook->pipelineprofiler) (2.6.0)\n", | |
"Requirement already satisfied: pyzmq>=13 in /usr/local/lib/python3.7/dist-packages (from jupyter-client>=5.2.0->notebook->pipelineprofiler) (22.0.3)\n", | |
"Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib/python3.7/dist-packages (from jinja2->notebook->pipelineprofiler) (1.1.1)\n", | |
"Requirement already satisfied: ipython>=4.0.0 in /usr/local/lib/python3.7/dist-packages (from ipykernel->notebook->pipelineprofiler) (5.5.0)\n", | |
"Requirement already satisfied: mistune<2,>=0.8.1 in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (0.8.4)\n", | |
"Requirement already satisfied: pandocfilters>=1.4.1 in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (1.4.3)\n", | |
"Requirement already satisfied: testpath in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (0.4.4)\n", | |
"Requirement already satisfied: defusedxml in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (0.7.1)\n", | |
"Requirement already satisfied: bleach in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (3.3.0)\n", | |
"Requirement already satisfied: pygments in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (2.6.1)\n", | |
"Requirement already satisfied: entrypoints>=0.2.2 in /usr/local/lib/python3.7/dist-packages (from nbconvert->notebook->pipelineprofiler) (0.3)\n", | |
"Requirement already satisfied: ptyprocess; os_name != \"nt\" in /usr/local/lib/python3.7/dist-packages (from terminado>=0.8.1->notebook->pipelineprofiler) (0.7.0)\n", | |
"Requirement already satisfied: prompt-toolkit<2.0.0,>=1.0.4 in /usr/local/lib/python3.7/dist-packages (from ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (1.0.18)\n", | |
"Requirement already satisfied: pexpect; sys_platform != \"win32\" in /usr/local/lib/python3.7/dist-packages (from ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (4.8.0)\n", | |
"Requirement already satisfied: setuptools>=18.5 in /usr/local/lib/python3.7/dist-packages (from ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (54.1.2)\n", | |
"Requirement already satisfied: pickleshare in /usr/local/lib/python3.7/dist-packages (from ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (0.7.5)\n", | |
"Requirement already satisfied: simplegeneric>0.8 in /usr/local/lib/python3.7/dist-packages (from ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (0.8.1)\n", | |
"Requirement already satisfied: webencodings in /usr/local/lib/python3.7/dist-packages (from bleach->nbconvert->notebook->pipelineprofiler) (0.5.1)\n", | |
"Requirement already satisfied: packaging in /usr/local/lib/python3.7/dist-packages (from bleach->nbconvert->notebook->pipelineprofiler) (20.9)\n", | |
"Requirement already satisfied: wcwidth in /usr/local/lib/python3.7/dist-packages (from prompt-toolkit<2.0.0,>=1.0.4->ipython>=4.0.0->ipykernel->notebook->pipelineprofiler) (0.2.5)\n", | |
"Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.7/dist-packages (from packaging->bleach->nbconvert->notebook->pipelineprofiler) (2.4.7)\n" | |
], | |
"name": "stdout" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"id": "bjlx7he7aQ_y", | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"outputId": "c12b3c28-6a11-4571-a76d-48fe879bc90b" | |
}, | |
"source": [ | |
"# Import may fail after the initial instalation of auto-sklearn \n", | |
"# -> Restart runtime and run all again\n", | |
"from autosklearn.classification import AutoSklearnClassifier" | |
], | |
"execution_count": 4, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"/usr/local/lib/python3.7/dist-packages/pyparsing.py:3190: FutureWarning:\n", | |
"\n", | |
"Possible set intersection at position 3\n", | |
"\n" | |
], | |
"name": "stderr" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 333 | |
}, | |
"id": "GnxADdQ3NIVp", | |
"outputId": "b16c9e7d-5520-4afd-ccd2-8b9569f7d904" | |
}, | |
"source": [ | |
"n_features = 100\n", | |
"n_samples = 1000\n", | |
"feature_names = [\"feat_\" + str(i) for i in range(n_features)]\n", | |
"X, y, coeff = make_regression(\n", | |
" n_samples=n_samples,\n", | |
" n_features=100,\n", | |
" n_informative=5,\n", | |
" noise=0, \n", | |
" shuffle=False,\n", | |
" coef=True\n", | |
")\n", | |
"df = pd.DataFrame(X, columns=feature_names)\n", | |
"df[\"label\"] = y\n", | |
"df.describe(include=\"all\")" | |
], | |
"execution_count": 5, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>feat_0</th>\n", | |
" <th>feat_1</th>\n", | |
" <th>feat_2</th>\n", | |
" <th>feat_3</th>\n", | |
" <th>feat_4</th>\n", | |
" <th>feat_5</th>\n", | |
" <th>feat_6</th>\n", | |
" <th>feat_7</th>\n", | |
" <th>feat_8</th>\n", | |
" <th>feat_9</th>\n", | |
" <th>feat_10</th>\n", | |
" <th>feat_11</th>\n", | |
" <th>feat_12</th>\n", | |
" <th>feat_13</th>\n", | |
" <th>feat_14</th>\n", | |
" <th>feat_15</th>\n", | |
" <th>feat_16</th>\n", | |
" <th>feat_17</th>\n", | |
" <th>feat_18</th>\n", | |
" <th>feat_19</th>\n", | |
" <th>feat_20</th>\n", | |
" <th>feat_21</th>\n", | |
" <th>feat_22</th>\n", | |
" <th>feat_23</th>\n", | |
" <th>feat_24</th>\n", | |
" <th>feat_25</th>\n", | |
" <th>feat_26</th>\n", | |
" <th>feat_27</th>\n", | |
" <th>feat_28</th>\n", | |
" <th>feat_29</th>\n", | |
" <th>feat_30</th>\n", | |
" <th>feat_31</th>\n", | |
" <th>feat_32</th>\n", | |
" <th>feat_33</th>\n", | |
" <th>feat_34</th>\n", | |
" <th>feat_35</th>\n", | |
" <th>feat_36</th>\n", | |
" <th>feat_37</th>\n", | |
" <th>feat_38</th>\n", | |
" <th>feat_39</th>\n", | |
" <th>...</th>\n", | |
" <th>feat_61</th>\n", | |
" <th>feat_62</th>\n", | |
" <th>feat_63</th>\n", | |
" <th>feat_64</th>\n", | |
" <th>feat_65</th>\n", | |
" <th>feat_66</th>\n", | |
" <th>feat_67</th>\n", | |
" <th>feat_68</th>\n", | |
" <th>feat_69</th>\n", | |
" <th>feat_70</th>\n", | |
" <th>feat_71</th>\n", | |
" <th>feat_72</th>\n", | |
" <th>feat_73</th>\n", | |
" <th>feat_74</th>\n", | |
" <th>feat_75</th>\n", | |
" <th>feat_76</th>\n", | |
" <th>feat_77</th>\n", | |
" <th>feat_78</th>\n", | |
" <th>feat_79</th>\n", | |
" <th>feat_80</th>\n", | |
" <th>feat_81</th>\n", | |
" <th>feat_82</th>\n", | |
" <th>feat_83</th>\n", | |
" <th>feat_84</th>\n", | |
" <th>feat_85</th>\n", | |
" <th>feat_86</th>\n", | |
" <th>feat_87</th>\n", | |
" <th>feat_88</th>\n", | |
" <th>feat_89</th>\n", | |
" <th>feat_90</th>\n", | |
" <th>feat_91</th>\n", | |
" <th>feat_92</th>\n", | |
" <th>feat_93</th>\n", | |
" <th>feat_94</th>\n", | |
" <th>feat_95</th>\n", | |
" <th>feat_96</th>\n", | |
" <th>feat_97</th>\n", | |
" <th>feat_98</th>\n", | |
" <th>feat_99</th>\n", | |
" <th>label</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>count</th>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>...</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>mean</th>\n", | |
" <td>-0.019203</td>\n", | |
" <td>0.072811</td>\n", | |
" <td>0.034746</td>\n", | |
" <td>-0.097877</td>\n", | |
" <td>-0.011952</td>\n", | |
" <td>0.066686</td>\n", | |
" <td>0.030159</td>\n", | |
" <td>0.000189</td>\n", | |
" <td>0.002420</td>\n", | |
" <td>0.017563</td>\n", | |
" <td>0.006284</td>\n", | |
" <td>0.031366</td>\n", | |
" <td>-0.002748</td>\n", | |
" <td>0.010262</td>\n", | |
" <td>0.015054</td>\n", | |
" <td>0.015649</td>\n", | |
" <td>-0.017908</td>\n", | |
" <td>0.083927</td>\n", | |
" <td>0.038492</td>\n", | |
" <td>-0.005242</td>\n", | |
" <td>0.017566</td>\n", | |
" <td>-0.030901</td>\n", | |
" <td>-0.018557</td>\n", | |
" <td>-0.045484</td>\n", | |
" <td>0.006014</td>\n", | |
" <td>-0.048975</td>\n", | |
" <td>-0.011360</td>\n", | |
" <td>0.013926</td>\n", | |
" <td>0.007330</td>\n", | |
" <td>0.032466</td>\n", | |
" <td>0.014782</td>\n", | |
" <td>0.021690</td>\n", | |
" <td>0.021282</td>\n", | |
" <td>-0.024470</td>\n", | |
" <td>0.012764</td>\n", | |
" <td>-0.027039</td>\n", | |
" <td>-0.042040</td>\n", | |
" <td>0.029412</td>\n", | |
" <td>-0.004173</td>\n", | |
" <td>-0.003642</td>\n", | |
" <td>...</td>\n", | |
" <td>-0.054103</td>\n", | |
" <td>0.018199</td>\n", | |
" <td>0.003166</td>\n", | |
" <td>-0.013486</td>\n", | |
" <td>-0.002757</td>\n", | |
" <td>0.081124</td>\n", | |
" <td>-0.004794</td>\n", | |
" <td>-0.053903</td>\n", | |
" <td>-0.002314</td>\n", | |
" <td>0.062766</td>\n", | |
" <td>0.074859</td>\n", | |
" <td>-0.072353</td>\n", | |
" <td>-0.048654</td>\n", | |
" <td>0.035699</td>\n", | |
" <td>-0.004792</td>\n", | |
" <td>-0.014287</td>\n", | |
" <td>0.000113</td>\n", | |
" <td>-0.069440</td>\n", | |
" <td>0.006885</td>\n", | |
" <td>-0.039721</td>\n", | |
" <td>0.011703</td>\n", | |
" <td>0.004805</td>\n", | |
" <td>0.061173</td>\n", | |
" <td>0.047362</td>\n", | |
" <td>0.040387</td>\n", | |
" <td>0.012096</td>\n", | |
" <td>0.013284</td>\n", | |
" <td>0.010094</td>\n", | |
" <td>0.010650</td>\n", | |
" <td>-0.017618</td>\n", | |
" <td>-0.017092</td>\n", | |
" <td>0.017875</td>\n", | |
" <td>-0.003053</td>\n", | |
" <td>0.017447</td>\n", | |
" <td>0.055891</td>\n", | |
" <td>-0.034754</td>\n", | |
" <td>0.013203</td>\n", | |
" <td>-0.008486</td>\n", | |
" <td>-0.028561</td>\n", | |
" <td>-0.693929</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>std</th>\n", | |
" <td>0.973870</td>\n", | |
" <td>1.004768</td>\n", | |
" <td>0.999862</td>\n", | |
" <td>1.007465</td>\n", | |
" <td>0.998945</td>\n", | |
" <td>1.031129</td>\n", | |
" <td>1.048829</td>\n", | |
" <td>0.985594</td>\n", | |
" <td>1.050631</td>\n", | |
" <td>1.013454</td>\n", | |
" <td>1.008945</td>\n", | |
" <td>0.975183</td>\n", | |
" <td>0.992397</td>\n", | |
" <td>0.985975</td>\n", | |
" <td>0.963173</td>\n", | |
" <td>1.034716</td>\n", | |
" <td>0.956639</td>\n", | |
" <td>0.929459</td>\n", | |
" <td>1.003659</td>\n", | |
" <td>0.991913</td>\n", | |
" <td>1.004515</td>\n", | |
" <td>1.000251</td>\n", | |
" <td>0.980971</td>\n", | |
" <td>1.020970</td>\n", | |
" <td>1.019893</td>\n", | |
" <td>1.009620</td>\n", | |
" <td>1.012069</td>\n", | |
" <td>0.998826</td>\n", | |
" <td>1.015051</td>\n", | |
" <td>0.980708</td>\n", | |
" <td>1.044498</td>\n", | |
" <td>0.973193</td>\n", | |
" <td>1.018589</td>\n", | |
" <td>0.990067</td>\n", | |
" <td>1.009618</td>\n", | |
" <td>0.958499</td>\n", | |
" <td>1.028147</td>\n", | |
" <td>0.965750</td>\n", | |
" <td>1.007875</td>\n", | |
" <td>1.032366</td>\n", | |
" <td>...</td>\n", | |
" <td>0.990841</td>\n", | |
" <td>0.962328</td>\n", | |
" <td>1.009747</td>\n", | |
" <td>1.005100</td>\n", | |
" <td>0.962815</td>\n", | |
" <td>1.052184</td>\n", | |
" <td>0.971594</td>\n", | |
" <td>0.990236</td>\n", | |
" <td>1.010134</td>\n", | |
" <td>1.018775</td>\n", | |
" <td>1.009757</td>\n", | |
" <td>0.970031</td>\n", | |
" <td>0.997735</td>\n", | |
" <td>0.955657</td>\n", | |
" <td>1.003400</td>\n", | |
" <td>0.993153</td>\n", | |
" <td>1.030896</td>\n", | |
" <td>0.969546</td>\n", | |
" <td>1.004345</td>\n", | |
" <td>0.975442</td>\n", | |
" <td>0.976086</td>\n", | |
" <td>0.984694</td>\n", | |
" <td>0.987340</td>\n", | |
" <td>0.977618</td>\n", | |
" <td>1.021386</td>\n", | |
" <td>0.992606</td>\n", | |
" <td>1.019135</td>\n", | |
" <td>0.996453</td>\n", | |
" <td>0.996129</td>\n", | |
" <td>1.021785</td>\n", | |
" <td>1.037741</td>\n", | |
" <td>1.028137</td>\n", | |
" <td>0.978914</td>\n", | |
" <td>1.018245</td>\n", | |
" <td>1.042289</td>\n", | |
" <td>1.003997</td>\n", | |
" <td>0.991046</td>\n", | |
" <td>0.995290</td>\n", | |
" <td>0.995240</td>\n", | |
" <td>156.795949</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>min</th>\n", | |
" <td>-2.765573</td>\n", | |
" <td>-2.731727</td>\n", | |
" <td>-2.846354</td>\n", | |
" <td>-3.033817</td>\n", | |
" <td>-2.848870</td>\n", | |
" <td>-3.315968</td>\n", | |
" <td>-3.033812</td>\n", | |
" <td>-3.286159</td>\n", | |
" <td>-3.054974</td>\n", | |
" <td>-2.991715</td>\n", | |
" <td>-3.027087</td>\n", | |
" <td>-2.849216</td>\n", | |
" <td>-3.058706</td>\n", | |
" <td>-3.838618</td>\n", | |
" <td>-2.782878</td>\n", | |
" <td>-3.665172</td>\n", | |
" <td>-3.711044</td>\n", | |
" <td>-2.769722</td>\n", | |
" <td>-3.587558</td>\n", | |
" <td>-3.183253</td>\n", | |
" <td>-3.352504</td>\n", | |
" <td>-3.310045</td>\n", | |
" <td>-2.600647</td>\n", | |
" <td>-3.469872</td>\n", | |
" <td>-3.204222</td>\n", | |
" <td>-2.915251</td>\n", | |
" <td>-2.884871</td>\n", | |
" <td>-3.663712</td>\n", | |
" <td>-2.929196</td>\n", | |
" <td>-3.483136</td>\n", | |
" <td>-3.509528</td>\n", | |
" <td>-3.102396</td>\n", | |
" <td>-3.193426</td>\n", | |
" <td>-2.658238</td>\n", | |
" <td>-2.812689</td>\n", | |
" <td>-2.972708</td>\n", | |
" <td>-3.535813</td>\n", | |
" <td>-3.205097</td>\n", | |
" <td>-3.539630</td>\n", | |
" <td>-3.278193</td>\n", | |
" <td>...</td>\n", | |
" <td>-2.892609</td>\n", | |
" <td>-2.577924</td>\n", | |
" <td>-4.020972</td>\n", | |
" <td>-3.135617</td>\n", | |
" <td>-3.496491</td>\n", | |
" <td>-3.720986</td>\n", | |
" <td>-3.453112</td>\n", | |
" <td>-3.493723</td>\n", | |
" <td>-3.190831</td>\n", | |
" <td>-2.975431</td>\n", | |
" <td>-3.349800</td>\n", | |
" <td>-3.449818</td>\n", | |
" <td>-3.261018</td>\n", | |
" <td>-3.328669</td>\n", | |
" <td>-3.197572</td>\n", | |
" <td>-3.133965</td>\n", | |
" <td>-2.913934</td>\n", | |
" <td>-3.480351</td>\n", | |
" <td>-3.196015</td>\n", | |
" <td>-4.649858</td>\n", | |
" <td>-2.795095</td>\n", | |
" <td>-3.212514</td>\n", | |
" <td>-2.777956</td>\n", | |
" <td>-3.558587</td>\n", | |
" <td>-3.486024</td>\n", | |
" <td>-3.088846</td>\n", | |
" <td>-3.052082</td>\n", | |
" <td>-2.798971</td>\n", | |
" <td>-2.848340</td>\n", | |
" <td>-3.539618</td>\n", | |
" <td>-3.340491</td>\n", | |
" <td>-2.974426</td>\n", | |
" <td>-3.196331</td>\n", | |
" <td>-3.280777</td>\n", | |
" <td>-3.427735</td>\n", | |
" <td>-3.194310</td>\n", | |
" <td>-2.827028</td>\n", | |
" <td>-3.098474</td>\n", | |
" <td>-2.897833</td>\n", | |
" <td>-552.197622</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25%</th>\n", | |
" <td>-0.676321</td>\n", | |
" <td>-0.629661</td>\n", | |
" <td>-0.680625</td>\n", | |
" <td>-0.807015</td>\n", | |
" <td>-0.664607</td>\n", | |
" <td>-0.671336</td>\n", | |
" <td>-0.718173</td>\n", | |
" <td>-0.676454</td>\n", | |
" <td>-0.705811</td>\n", | |
" <td>-0.650574</td>\n", | |
" <td>-0.693801</td>\n", | |
" <td>-0.589354</td>\n", | |
" <td>-0.643861</td>\n", | |
" <td>-0.679057</td>\n", | |
" <td>-0.640994</td>\n", | |
" <td>-0.673618</td>\n", | |
" <td>-0.646520</td>\n", | |
" <td>-0.579014</td>\n", | |
" <td>-0.663780</td>\n", | |
" <td>-0.684801</td>\n", | |
" <td>-0.667897</td>\n", | |
" <td>-0.731198</td>\n", | |
" <td>-0.674951</td>\n", | |
" <td>-0.753102</td>\n", | |
" <td>-0.686039</td>\n", | |
" <td>-0.748897</td>\n", | |
" <td>-0.735551</td>\n", | |
" <td>-0.614446</td>\n", | |
" <td>-0.638776</td>\n", | |
" <td>-0.648189</td>\n", | |
" <td>-0.652329</td>\n", | |
" <td>-0.616909</td>\n", | |
" <td>-0.632700</td>\n", | |
" <td>-0.717579</td>\n", | |
" <td>-0.697392</td>\n", | |
" <td>-0.671472</td>\n", | |
" <td>-0.733369</td>\n", | |
" <td>-0.578196</td>\n", | |
" <td>-0.699989</td>\n", | |
" <td>-0.686083</td>\n", | |
" <td>...</td>\n", | |
" <td>-0.727118</td>\n", | |
" <td>-0.675894</td>\n", | |
" <td>-0.704584</td>\n", | |
" <td>-0.701404</td>\n", | |
" <td>-0.686563</td>\n", | |
" <td>-0.602587</td>\n", | |
" <td>-0.643403</td>\n", | |
" <td>-0.684945</td>\n", | |
" <td>-0.640580</td>\n", | |
" <td>-0.638519</td>\n", | |
" <td>-0.616474</td>\n", | |
" <td>-0.765868</td>\n", | |
" <td>-0.747456</td>\n", | |
" <td>-0.569431</td>\n", | |
" <td>-0.662788</td>\n", | |
" <td>-0.686248</td>\n", | |
" <td>-0.682736</td>\n", | |
" <td>-0.745134</td>\n", | |
" <td>-0.656286</td>\n", | |
" <td>-0.665905</td>\n", | |
" <td>-0.661333</td>\n", | |
" <td>-0.643449</td>\n", | |
" <td>-0.585665</td>\n", | |
" <td>-0.612435</td>\n", | |
" <td>-0.686181</td>\n", | |
" <td>-0.660987</td>\n", | |
" <td>-0.652181</td>\n", | |
" <td>-0.699866</td>\n", | |
" <td>-0.630471</td>\n", | |
" <td>-0.686378</td>\n", | |
" <td>-0.697847</td>\n", | |
" <td>-0.661811</td>\n", | |
" <td>-0.662083</td>\n", | |
" <td>-0.632202</td>\n", | |
" <td>-0.618930</td>\n", | |
" <td>-0.731618</td>\n", | |
" <td>-0.676630</td>\n", | |
" <td>-0.668744</td>\n", | |
" <td>-0.689677</td>\n", | |
" <td>-98.326307</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>50%</th>\n", | |
" <td>-0.038091</td>\n", | |
" <td>0.095016</td>\n", | |
" <td>0.029457</td>\n", | |
" <td>-0.073810</td>\n", | |
" <td>-0.004831</td>\n", | |
" <td>0.078501</td>\n", | |
" <td>0.009822</td>\n", | |
" <td>-0.008720</td>\n", | |
" <td>0.011434</td>\n", | |
" <td>-0.008726</td>\n", | |
" <td>-0.001878</td>\n", | |
" <td>0.014341</td>\n", | |
" <td>0.033412</td>\n", | |
" <td>0.006637</td>\n", | |
" <td>0.052220</td>\n", | |
" <td>-0.010368</td>\n", | |
" <td>-0.014754</td>\n", | |
" <td>0.067721</td>\n", | |
" <td>0.035848</td>\n", | |
" <td>-0.013227</td>\n", | |
" <td>0.005184</td>\n", | |
" <td>-0.073271</td>\n", | |
" <td>-0.026870</td>\n", | |
" <td>-0.058872</td>\n", | |
" <td>0.019228</td>\n", | |
" <td>-0.041615</td>\n", | |
" <td>-0.006941</td>\n", | |
" <td>0.052769</td>\n", | |
" <td>0.030802</td>\n", | |
" <td>-0.008860</td>\n", | |
" <td>-0.017476</td>\n", | |
" <td>0.000332</td>\n", | |
" <td>0.027341</td>\n", | |
" <td>-0.032113</td>\n", | |
" <td>0.002343</td>\n", | |
" <td>-0.044942</td>\n", | |
" <td>-0.045441</td>\n", | |
" <td>0.055692</td>\n", | |
" <td>0.008169</td>\n", | |
" <td>-0.033074</td>\n", | |
" <td>...</td>\n", | |
" <td>-0.049789</td>\n", | |
" <td>0.022649</td>\n", | |
" <td>-0.013231</td>\n", | |
" <td>-0.016607</td>\n", | |
" <td>-0.011069</td>\n", | |
" <td>0.070115</td>\n", | |
" <td>-0.000556</td>\n", | |
" <td>-0.031849</td>\n", | |
" <td>0.024749</td>\n", | |
" <td>0.004671</td>\n", | |
" <td>0.094692</td>\n", | |
" <td>-0.069446</td>\n", | |
" <td>-0.053199</td>\n", | |
" <td>0.032946</td>\n", | |
" <td>-0.018742</td>\n", | |
" <td>-0.050370</td>\n", | |
" <td>-0.054469</td>\n", | |
" <td>-0.020724</td>\n", | |
" <td>0.021914</td>\n", | |
" <td>0.009400</td>\n", | |
" <td>-0.021129</td>\n", | |
" <td>0.033363</td>\n", | |
" <td>0.071212</td>\n", | |
" <td>0.030248</td>\n", | |
" <td>0.072361</td>\n", | |
" <td>-0.008894</td>\n", | |
" <td>0.001344</td>\n", | |
" <td>0.008644</td>\n", | |
" <td>0.025936</td>\n", | |
" <td>-0.003293</td>\n", | |
" <td>-0.009914</td>\n", | |
" <td>0.019698</td>\n", | |
" <td>0.008743</td>\n", | |
" <td>0.056183</td>\n", | |
" <td>0.093708</td>\n", | |
" <td>-0.033623</td>\n", | |
" <td>0.045236</td>\n", | |
" <td>0.000043</td>\n", | |
" <td>-0.031789</td>\n", | |
" <td>-0.043498</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>75%</th>\n", | |
" <td>0.633403</td>\n", | |
" <td>0.777429</td>\n", | |
" <td>0.707360</td>\n", | |
" <td>0.595601</td>\n", | |
" <td>0.671508</td>\n", | |
" <td>0.758155</td>\n", | |
" <td>0.744497</td>\n", | |
" <td>0.666768</td>\n", | |
" <td>0.736434</td>\n", | |
" <td>0.712700</td>\n", | |
" <td>0.688065</td>\n", | |
" <td>0.692900</td>\n", | |
" <td>0.605220</td>\n", | |
" <td>0.668602</td>\n", | |
" <td>0.652184</td>\n", | |
" <td>0.724633</td>\n", | |
" <td>0.663859</td>\n", | |
" <td>0.745836</td>\n", | |
" <td>0.702741</td>\n", | |
" <td>0.665913</td>\n", | |
" <td>0.679483</td>\n", | |
" <td>0.659118</td>\n", | |
" <td>0.621244</td>\n", | |
" <td>0.619366</td>\n", | |
" <td>0.705254</td>\n", | |
" <td>0.643611</td>\n", | |
" <td>0.677285</td>\n", | |
" <td>0.636778</td>\n", | |
" <td>0.690061</td>\n", | |
" <td>0.712487</td>\n", | |
" <td>0.695342</td>\n", | |
" <td>0.646868</td>\n", | |
" <td>0.678055</td>\n", | |
" <td>0.654483</td>\n", | |
" <td>0.702076</td>\n", | |
" <td>0.626822</td>\n", | |
" <td>0.651463</td>\n", | |
" <td>0.686961</td>\n", | |
" <td>0.688609</td>\n", | |
" <td>0.677129</td>\n", | |
" <td>...</td>\n", | |
" <td>0.642709</td>\n", | |
" <td>0.665944</td>\n", | |
" <td>0.695515</td>\n", | |
" <td>0.710975</td>\n", | |
" <td>0.655329</td>\n", | |
" <td>0.786996</td>\n", | |
" <td>0.671391</td>\n", | |
" <td>0.603326</td>\n", | |
" <td>0.674047</td>\n", | |
" <td>0.767700</td>\n", | |
" <td>0.736179</td>\n", | |
" <td>0.610128</td>\n", | |
" <td>0.630390</td>\n", | |
" <td>0.638956</td>\n", | |
" <td>0.665782</td>\n", | |
" <td>0.709193</td>\n", | |
" <td>0.727619</td>\n", | |
" <td>0.576610</td>\n", | |
" <td>0.698628</td>\n", | |
" <td>0.600495</td>\n", | |
" <td>0.653422</td>\n", | |
" <td>0.644439</td>\n", | |
" <td>0.673071</td>\n", | |
" <td>0.706484</td>\n", | |
" <td>0.690993</td>\n", | |
" <td>0.703874</td>\n", | |
" <td>0.691476</td>\n", | |
" <td>0.694085</td>\n", | |
" <td>0.657737</td>\n", | |
" <td>0.637031</td>\n", | |
" <td>0.684598</td>\n", | |
" <td>0.669994</td>\n", | |
" <td>0.631924</td>\n", | |
" <td>0.696028</td>\n", | |
" <td>0.772634</td>\n", | |
" <td>0.633767</td>\n", | |
" <td>0.640201</td>\n", | |
" <td>0.725448</td>\n", | |
" <td>0.631506</td>\n", | |
" <td>103.499420</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>max</th>\n", | |
" <td>3.026795</td>\n", | |
" <td>3.390151</td>\n", | |
" <td>2.991081</td>\n", | |
" <td>3.174868</td>\n", | |
" <td>3.684328</td>\n", | |
" <td>3.361824</td>\n", | |
" <td>3.481438</td>\n", | |
" <td>3.051310</td>\n", | |
" <td>3.255389</td>\n", | |
" <td>3.177705</td>\n", | |
" <td>2.585613</td>\n", | |
" <td>2.865223</td>\n", | |
" <td>2.953114</td>\n", | |
" <td>3.166652</td>\n", | |
" <td>3.765819</td>\n", | |
" <td>3.553199</td>\n", | |
" <td>2.955398</td>\n", | |
" <td>2.700445</td>\n", | |
" <td>2.996122</td>\n", | |
" <td>3.082052</td>\n", | |
" <td>3.330310</td>\n", | |
" <td>3.524104</td>\n", | |
" <td>2.936346</td>\n", | |
" <td>3.283567</td>\n", | |
" <td>2.804219</td>\n", | |
" <td>3.405304</td>\n", | |
" <td>3.071213</td>\n", | |
" <td>2.903830</td>\n", | |
" <td>2.981178</td>\n", | |
" <td>3.079457</td>\n", | |
" <td>3.836762</td>\n", | |
" <td>2.960405</td>\n", | |
" <td>3.520389</td>\n", | |
" <td>2.755024</td>\n", | |
" <td>3.615282</td>\n", | |
" <td>2.918236</td>\n", | |
" <td>3.208628</td>\n", | |
" <td>3.176017</td>\n", | |
" <td>3.036659</td>\n", | |
" <td>2.853665</td>\n", | |
" <td>...</td>\n", | |
" <td>3.229805</td>\n", | |
" <td>2.714358</td>\n", | |
" <td>2.831686</td>\n", | |
" <td>3.870396</td>\n", | |
" <td>3.137382</td>\n", | |
" <td>3.400247</td>\n", | |
" <td>3.053751</td>\n", | |
" <td>3.285882</td>\n", | |
" <td>3.274251</td>\n", | |
" <td>3.409249</td>\n", | |
" <td>3.412608</td>\n", | |
" <td>2.636035</td>\n", | |
" <td>3.254553</td>\n", | |
" <td>3.326257</td>\n", | |
" <td>3.036208</td>\n", | |
" <td>2.822060</td>\n", | |
" <td>3.275174</td>\n", | |
" <td>2.786524</td>\n", | |
" <td>3.337405</td>\n", | |
" <td>3.479219</td>\n", | |
" <td>3.286041</td>\n", | |
" <td>3.251010</td>\n", | |
" <td>2.984686</td>\n", | |
" <td>3.635974</td>\n", | |
" <td>3.551308</td>\n", | |
" <td>3.467748</td>\n", | |
" <td>3.594626</td>\n", | |
" <td>3.199389</td>\n", | |
" <td>3.857585</td>\n", | |
" <td>3.861245</td>\n", | |
" <td>3.342104</td>\n", | |
" <td>3.840093</td>\n", | |
" <td>3.365860</td>\n", | |
" <td>3.294649</td>\n", | |
" <td>3.314006</td>\n", | |
" <td>3.868654</td>\n", | |
" <td>2.970025</td>\n", | |
" <td>3.187762</td>\n", | |
" <td>3.016280</td>\n", | |
" <td>462.072385</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>8 rows × 101 columns</p>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" feat_0 feat_1 ... feat_99 label\n", | |
"count 1000.000000 1000.000000 ... 1000.000000 1000.000000\n", | |
"mean -0.019203 0.072811 ... -0.028561 -0.693929\n", | |
"std 0.973870 1.004768 ... 0.995240 156.795949\n", | |
"min -2.765573 -2.731727 ... -2.897833 -552.197622\n", | |
"25% -0.676321 -0.629661 ... -0.689677 -98.326307\n", | |
"50% -0.038091 0.095016 ... -0.031789 -0.043498\n", | |
"75% 0.633403 0.777429 ... 0.631506 103.499420\n", | |
"max 3.026795 3.390151 ... 3.016280 462.072385\n", | |
"\n", | |
"[8 rows x 101 columns]" | |
] | |
}, | |
"metadata": { | |
"tags": [] | |
}, | |
"execution_count": 5 | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 212 | |
}, | |
"id": "hb3BsHb9N68F", | |
"outputId": "e1e0f919-896b-4200-a5af-194c965251fd" | |
}, | |
"source": [ | |
"coef_df = pd.DataFrame(index=feature_names)\n", | |
"coef_df[\"true_coefficients\"] = coeff\n", | |
"significant_coeffs = coef_df.loc[coef_df[\"true_coefficients\"]>0, :].index\n", | |
"coef_df.loc[significant_coeffs, :]" | |
], | |
"execution_count": 6, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"INFO:numexpr.utils:NumExpr defaulting to 2 threads.\n" | |
], | |
"name": "stderr" | |
}, | |
{ | |
"output_type": "execute_result", | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>true_coefficients</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>feat_0</th>\n", | |
" <td>35.337174</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_1</th>\n", | |
" <td>46.900929</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_2</th>\n", | |
" <td>94.425197</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_3</th>\n", | |
" <td>57.024990</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_4</th>\n", | |
" <td>94.525813</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" true_coefficients\n", | |
"feat_0 35.337174\n", | |
"feat_1 46.900929\n", | |
"feat_2 94.425197\n", | |
"feat_3 57.024990\n", | |
"feat_4 94.525813" | |
] | |
}, | |
"metadata": { | |
"tags": [] | |
}, | |
"execution_count": 6 | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 225 | |
}, | |
"id": "36LN_sy2J2ig", | |
"outputId": "5836730f-1c68-4cb4-b897-524635146dc3" | |
}, | |
"source": [ | |
"df.loc[:, list(significant_coeffs) + [\"label\"]].corr()" | |
], | |
"execution_count": 7, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>feat_0</th>\n", | |
" <th>feat_1</th>\n", | |
" <th>feat_2</th>\n", | |
" <th>feat_3</th>\n", | |
" <th>feat_4</th>\n", | |
" <th>label</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>feat_0</th>\n", | |
" <td>1.000000</td>\n", | |
" <td>0.006524</td>\n", | |
" <td>0.007880</td>\n", | |
" <td>0.007650</td>\n", | |
" <td>-0.045410</td>\n", | |
" <td>0.201643</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_1</th>\n", | |
" <td>0.006524</td>\n", | |
" <td>1.000000</td>\n", | |
" <td>0.022874</td>\n", | |
" <td>-0.002582</td>\n", | |
" <td>0.016442</td>\n", | |
" <td>0.324708</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_2</th>\n", | |
" <td>0.007880</td>\n", | |
" <td>0.022874</td>\n", | |
" <td>1.000000</td>\n", | |
" <td>0.014096</td>\n", | |
" <td>-0.008982</td>\n", | |
" <td>0.610493</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_3</th>\n", | |
" <td>0.007650</td>\n", | |
" <td>-0.002582</td>\n", | |
" <td>0.014096</td>\n", | |
" <td>1.000000</td>\n", | |
" <td>-0.007991</td>\n", | |
" <td>0.370982</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>feat_4</th>\n", | |
" <td>-0.045410</td>\n", | |
" <td>0.016442</td>\n", | |
" <td>-0.008982</td>\n", | |
" <td>-0.007991</td>\n", | |
" <td>1.000000</td>\n", | |
" <td>0.588861</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>label</th>\n", | |
" <td>0.201643</td>\n", | |
" <td>0.324708</td>\n", | |
" <td>0.610493</td>\n", | |
" <td>0.370982</td>\n", | |
" <td>0.588861</td>\n", | |
" <td>1.000000</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" feat_0 feat_1 feat_2 feat_3 feat_4 label\n", | |
"feat_0 1.000000 0.006524 0.007880 0.007650 -0.045410 0.201643\n", | |
"feat_1 0.006524 1.000000 0.022874 -0.002582 0.016442 0.324708\n", | |
"feat_2 0.007880 0.022874 1.000000 0.014096 -0.008982 0.610493\n", | |
"feat_3 0.007650 -0.002582 0.014096 1.000000 -0.007991 0.370982\n", | |
"feat_4 -0.045410 0.016442 -0.008982 -0.007991 1.000000 0.588861\n", | |
"label 0.201643 0.324708 0.610493 0.370982 0.588861 1.000000" | |
] | |
}, | |
"metadata": { | |
"tags": [] | |
}, | |
"execution_count": 7 | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 717 | |
}, | |
"id": "Oxw49kkGF-Ed", | |
"outputId": "bb10ea23-d9cd-421b-af1f-f5034401eb5c" | |
}, | |
"source": [ | |
"fig = px.scatter_matrix(df.loc[:, list(significant_coeffs) + \n", | |
" [\"label\"] + [\"feat_5\", \"feat_6\", \"feat_7\"]])\n", | |
"fig.update_layout(width=900,\n", | |
" height=700)\n", | |
"fig.update_traces(marker=dict(size=2))\n", | |
"fig.show()" | |
], | |
"execution_count": 8, | |
"outputs": [ | |
{ | |
"output_type": "display_data", | |
"data": { | |
"text/html": [ | |
"<html>\n", | |
"<head><meta charset=\"utf-8\" /></head>\n", | |
"<body>\n", | |
" <div>\n", | |
" <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script>\n", | |
" <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n", | |
" <script src=\"https://cdn.plot.ly/plotly-latest.min.js\"></script> \n", | |
" <div id=\"c8d28eee-d0ba-43cc-bff0-9b06492a0857\" class=\"plotly-graph-div\" style=\"height:700px; width:900px;\"></div>\n", | |
" <script type=\"text/javascript\">\n", | |
" \n", | |
" window.PLOTLYENV=window.PLOTLYENV || {};\n", | |
" \n", | |
" if (document.getElementById(\"c8d28eee-d0ba-43cc-bff0-9b06492a0857\")) {\n", | |
" Plotly.newPlot(\n", | |
" 'c8d28eee-d0ba-43cc-bff0-9b06492a0857',\n", | |
" [{\"dimensions\": [{\"axis\": {\"matches\": true}, \"label\": \"feat_0\", \"values\": [-0.4916174461774283, 0.7215858863538225, -0.8188383262972572, 0.6248355190179542, 0.9018574901901768, -0.980463391124093, -0.7343260211741722, 1.2856057814154216, 0.577411896502262, -1.0639408208059453, -0.7661040450234361, 0.350913165408369, 0.44305178329879236, -0.9461167057292322, -2.1258875154319337, -1.0101540167490637, 1.0383519423024037, -0.7375536290316126, -1.4077043001271308, -1.1122743020538435, -0.05309305484721639, 1.4660679898435687, 0.26898956797645124, 0.448984703156639, 0.15436483618541547, -0.4656790261751396, -1.9703323478064214, -0.48768563531342024, -0.7215667325720415, 0.3882479918232419, -0.848202170469749, -0.1963572797739303, -0.06110482897184355, -2.112466240256229, 0.41989662281863893, 1.1374123007458754, 0.569693262321766, 0.39800119494220804, 0.05000580471146877, -0.5811167827384977, -0.955706739784524, 2.6466884778805895, 0.35329554725494766, -0.5077088245210989, 0.8773334837106368, -0.8416776115546878, -0.7086443008481971, 0.023995472471508673, -2.1902362651224547, -1.4663210184242694, -0.8111253806910027, 1.9298764531828152, 0.4818982763895576, 0.057390181986734144, -0.0876123558039081, 0.33081710286569493, 1.3383325278443798, -0.3963609069062014, -0.9692550761425003, -0.347126460044244, -0.5401838662318486, -1.1713728514245265, -0.005360226483812793, -1.0979224817994033, 0.9997922039325547, 0.21737551507489875, -0.05847238926129285, 0.7800956906159433, -1.1733484280463047, -1.9807740998435703, 0.5566775604602725, -0.6457403060255533, 0.4935622433147035, 0.10705123888567838, 0.9479388008618302, 0.46352798573467136, 0.20616676814856505, 0.5175251041688443, -2.1965518988217156, 0.5551285051486097, 0.6325071577330749, -0.3791779625285961, -0.8461166630657118, -1.370074298549096, -0.493830227655425, -0.09929609854740169, -0.06538886878811156, -0.6061770783843515, -0.4910701503829309, -1.3771016079663099, -1.251412988528317, 1.662580834210595, 0.05578180252627306, 0.8168691124407373, 0.33604518510026843, 0.3685221266125657, -0.9536188723494604, 0.9944522987755429, 1.014790267544112, 1.143661553472261, 0.33374730023299004, 0.5615872699710834, -2.139080097334399, -2.2467874429836514, -0.19733905119960723, 0.5602809099492357, 0.21730923616830342, -1.3978775839004856, 0.8559662160721028, 1.2338724698720889, -1.6724974105164652, 1.298746355393951, 0.9141779693836823, 0.7231371361760139, 0.6981057684350022, 1.1457952714854243, -1.2940605747122325, 0.5092789574481142, -0.3214727666103948, 0.5314609576834383, 0.0980684364125962, -1.4420271905626367, 0.12287613266169892, 1.774587941701403, 1.1172161815246815, -0.3172338741674316, -0.3781372347311008, 0.8994689933469513, -1.136393228999305, 0.7228832253272042, -0.4686430839258895, -0.11480296872517141, 1.5732636900814299, -0.21129538527677658, -1.4089902059074777, -1.0851494945802787, -1.2579776714438913, 0.8476937711560839, -1.339370190870765, 0.820350227599266, -1.2130470780795992, 0.758469006667732, 0.10357361648569076, 0.8845099587265259, -0.15036401015986975, -0.1613621085689532, -0.13458355366221494, -2.471540206831426, -0.5077843425005553, 0.2479292015505682, 0.6928038299351197, 1.470407002954555, -2.3122829313469326, 0.21504203050828996, 0.18240705677066338, -0.2609748591498304, -1.8733491295493554, -0.5120908940319302, 0.5870359328078475, -0.33696714096675007, -0.7910552949375558, -0.9483568966556798, 0.013939552024926808, -0.7136426848060363, 1.1638231504567105, -0.924802957949599, -0.04477099658492375, -1.032670556963434, -0.935043507595196, -1.3235335165807194, -0.7315937191211486, 0.6137849297952177, -0.16323666922190677, -1.643867982481802, -1.7615185778565055, -0.212247010072382, 0.42752386996734404, 0.4903803436062638, -0.848514732642028, 1.1036663370885849, 1.981500849890868, -2.096958192127219, 0.5740217373439732, 0.5555485826958756, 0.6454544521940255, -1.2946838703503423, 0.0801998290599232, -1.57199998210529, 1.3708819994603605, 1.053057028258695, -0.0827814702227331, -0.123099365421853, -0.08200031182798284, 0.3480299278446747, -1.1982872284737374, -1.1867652557235109, -0.7322289656171367, -1.1841802967252375, 0.16262408483658444, 1.801416482388143, -0.549253065598513, 0.3826252961613839, -0.19274304907217474, -1.485064350357729, -0.04937220992014023, -0.9701368312310628, -0.08791528883724412, 0.5398959099529194, 1.092332885474517, 0.24741526301601843, 0.4103994938293667, -0.5473737050714264, -0.4797306688152384, -0.752887908920844, -0.5893653208382746, 0.9473529552220703, -0.5861194225894418, -0.05142878992302071, -0.17654122180552087, 0.4792052716664267, 2.0560841814934463, -0.15224926478176162, -0.3767984492940523, 0.23377553615058277, -0.3423345721866926, 0.4383865332657292, 1.2139725606946126, 0.6786318522344066, 0.3501759793003216, 0.3451581169746234, -2.295589304426618, 1.0889079739052694, -0.13912614102122475, 2.1583831968001377, -0.848570005251874, -0.6872486953067125, -1.5021844951356271, 0.2714382793056164, 0.38310611819078966, -0.5670775461801795, 0.5683896960719117, -1.3512987134905339, 0.1403229568669079, 1.0577563858211403, -0.2424721142162669, -1.6011359452599723, -0.11944103476697, -0.030303444269727402, -0.7029604371198716, -0.6725630304442304, -0.40844859765235647, 0.6395849912028941, -0.03412869754658548, -0.2920535225713618, -0.8460924114452325, 1.0092347670471649, 0.8633673822408557, 1.7820031885761698, -0.09143205217137215, -0.8801136184269577, 0.3394277735664922, 1.8471229900521975, -1.3109762140380956, 0.43028443940517397, -0.22871189893260715, 0.5359447055695519, -0.9608032635699233, 0.010457428424054086, -2.7655728393416448, 0.06768699225799958, -0.0032255699903924124, -0.4997191776077092, -1.2277803485472527, -0.508364589493236, -1.2494341363644748, 0.009860538817765772, -0.20572190548114075, 0.08682403138860707, -1.273729475058076, -0.7367970123804611, 0.3764520564160628, -0.12523499867684362, 2.128607922225198, -0.44486434138190317, -0.40154111921154967, -0.6754438073682406, 0.6390604113694651, 1.5413010268869778, 0.041654316849697094, -0.10286209834351731, -0.473782485423549, 1.2413073577967138, 0.8293394321736896, 0.5725867952803897, 0.31393277302217465, 0.43098055682787884, -0.3934527578691723, 1.3472565072365223, -0.12552388127013883, 0.06715239011704746, 0.28982452531660535, 0.4383399613013451, -0.8143044823591835, 0.512677918698373, -0.13682477649200003, 0.24297983986019628, 0.21457751454449428, -0.2335699305346185, -0.02842406975274069, -2.0488517320868183, -0.2975969840312409, 0.029170951485897892, -0.609589490221483, -0.11158995066864863, -1.0917774607499708, -0.8540819631688288, -0.4019694537457732, 0.39396174051914673, 0.39454329424814755, 0.19167262002625585, 0.7429464675093852, -0.23932460896376873, -0.2296998507979944, -0.5218191003683655, -1.658221849340703, 2.627346032736619, -0.01870457131614338, -1.0884911404353483, 0.35772332026169196, -0.10814362896131546, 0.6017401135918685, -0.7511040441968904, 1.2065623985833087, 0.6229648388980906, 0.8009227303854515, 0.10717312248024091, -0.5266231166228441, 1.825416809780314, 1.5875879032294893, -0.21495252349705316, -1.4583645751846532, 0.4424481581061526, -0.5042455758650126, 0.0019789849560886024, -0.9879748420137335, 0.1239255354600706, -0.050966693391917575, -0.20556431906453262, -1.7152670529062428, 1.8382973040454063, 1.8596271198554968, -1.4525074564455294, 1.1776536750517161, 0.6821140725835044, 0.45086216818476593, 0.19863732024696665, 0.7699565898869727, -0.09600993076623787, -0.9539515642444616, -0.37820878540116054, -0.29755485384913044, 0.4260413477623075, -1.3940862430432104, -0.7752176283647292, -1.3251637466317143, 0.648947904028756, -0.7348409291314422, -0.573590578968174, -0.8685785583343315, 0.2817629564045754, -1.399360901512759, 0.7903959322878565, -0.6083090639285669, 0.781306242560461, 0.5728105670863418, 0.2522983643729953, -1.8367960137430732, 1.1347436084393858, 1.5606875376150484, -0.5720832990783153, -1.168694032013486, -0.5445668563877806, -0.1943006832297574, -1.6716453270584173, 0.9815396054345231, 0.6374318773355461, -0.4640536823244428, 1.5324245779850787, 0.11235698668780023, 1.295646459949106, 0.20292321962646362, -0.45340936967766177, -1.3849609608273883, 0.8900551324837146, 2.568035695483023, -0.9665366204029577, 3.0267949162673746, 0.5133077686486179, 0.7585406666767017, -0.3809803640303711, -0.7984424004247914, 0.5062875476034592, -0.9044739232351272, -0.7832180746701006, -0.7804456092093716, 1.4784419961892172, -0.9727711783292461, 0.062450108222912054, 0.4518297849153385, 0.6703063248840021, 0.1342128327065535, -0.5392508211671747, 0.014038139021363536, -0.9736611824435765, -1.0303893709752308, -1.4379767798070764, -0.2227312102830113, 1.808827738047811, -0.19173173668778112, -1.6787399531356728, -0.0588227141208541, 0.8856840525978501, 0.34080521064008595, 1.6254902567538025, 0.4418637343416468, -0.794147890418119, -0.16150745452496224, -1.1431933505213032, -1.6829869727442859, 0.46588279921280634, -0.37829620171039835, 0.0041008583366394635, 1.4693184046896395, -0.17513674302028134, 2.378561129779765, -1.8436867608353862, 1.2195304555137716, 0.061927423257775956, -1.373381781786268, -0.04711510139251484, 0.3006075848178645, -0.7845245748029621, 2.26473321339677, 2.2951872221503358, -0.10873782006932332, 1.3170005423433406, 0.5975845428002865, -0.500505872549209, -0.05603209547747864, 0.8347295129382478, 1.6071870085996762, 2.2269178932083444, 0.5027940108600473, -0.9368908898455589, -0.826093918073318, 2.005355216863692, -0.8482252010314649, 1.2607412848007782, -0.6468839959917214, -2.1978330939293347, -0.4472990007356191, 0.13272466977704325, -1.3927649345849598, -0.424778415038174, 0.3257716302659653, 0.9275552675965263, -0.7149684929108238, 0.7145432792729345, 0.37198367448969943, 0.17077730346762185, -1.5032522673169106, 0.5658433717535699, 0.13120033521472405, 1.0749063672533476, 0.10897250831388337, 0.615818655566762, -0.7992874211918416, -0.17712869776643794, -0.6484139865099233, -2.3899734512057393, -0.611391893896716, 0.9332136093544161, 0.5538549233475336, 0.1624962884381118, 1.607650555317706, -1.4129746835318309, -0.5994887804096892, 1.323246730073615, -0.7689641327694294, 0.6367462580256453, -0.22300697057239113, -0.7124428446772592, -0.2245389881236426, 0.16566566071851213, -1.610351939126752, 1.0357934045070043, 0.5728179314837256, 1.2011426735100124, -0.10807918546251612, 1.4644144643989996, -0.3320657797417864, 0.3422229257225629, -0.11347316462426808, 0.7929052634406925, 0.6610400450253355, -0.9645653242778132, -0.4598408123075343, 0.4809342169983695, 0.25385278716550097, -0.582897241528961, -0.4477133410944432, 0.8625561680653845, 0.6507034799776678, -1.3194188889781076, 0.6423443847573198, -0.3631323147758644, -1.6052091450386867, 1.337008722123671, -0.7672882249275109, -1.497756930900001, -1.627945321627436, 0.37435910709209125, -0.0725435522620997, -0.1635049184725295, -0.8440318997029866, 1.1479117167863158, 1.1509906323295829, 0.7325205292534867, -2.440163245063203, -0.16003715695147616, 0.4182809257404787, -0.48291319997709536, 0.4683392987075756, -0.16114802514602547, 0.13859394950234502, -0.7797284584918717, 0.6422309115994339, 0.21754637198024612, -0.12873374514837196, 1.186926368914666, 0.06819641016289099, -1.6144510654490998, 1.2485575505072795, 1.6525523413285217, 0.757982286817373, -0.16285007268091634, 0.8452855017840678, -1.791040631828851, -0.3157973629492667, -0.6956738642831223, -0.34638925642561924, -0.9562718603602812, 0.89820004567635, -0.9796011086963728, -0.8293324509032376, -0.37539797917013895, 0.28975755516655566, -0.5450951206635445, 0.5118903818022789, 0.10943581185545853, -0.1987259996532471, -0.2591785132161021, 0.5496090986529262, 0.641081653864369, -0.1141122272044494, 0.32243492079358915, 0.24474935752392996, 1.820041751833808, -1.2493816098597559, 0.5523987580477151, -0.2045126912717018, 0.5091276069010842, -1.1119172194719227, -0.3172195745100905, -1.0190130729909315, 0.1968865605299924, -0.4856767493485816, 2.077850743930565, 0.759228098501205, 0.8815956391902702, -0.7174525649038468, 1.2188248814186764, -0.8779227279243496, 1.2702678871445152, 0.23396851282669112, -1.6030092441127133, -0.9061616908017253, 0.7000794845504564, 0.5004499838898793, 0.03489753896036536, -0.8916704748289495, -1.4543919316556537, 0.4764132841019518, -1.7255092642084615, -0.9721722698321845, -2.1350121549263084, -1.1624744988547873, 0.12038246436357707, 0.7714450988847534, -1.1771183114590278, -2.0688699849556076, -0.5791159236524871, 0.7731353720186807, -0.22241128381074127, -1.19930065988068, 0.07930221528678855, 0.21341035393329555, -0.10528086327307762, -0.13146153520859732, 0.07833968619804928, -0.5981244400979411, -1.6007452692574762, 0.40443639490331496, 1.173091331943709, 1.035443232486851, -0.8450328183618554, 0.306631848341116, 0.1963428631485642, -1.7558470522065908, 1.3874755479414504, -1.2699144284982082, 0.1624660456570209, 0.47183917798891684, -0.613277073388753, -0.561396814618643, -0.5815436692226303, 1.02990654878571, -0.4931243755463156, 0.7280540192301943, 0.48192276696091757, -0.47236435240836305, 0.3245702246160385, -1.2463773437911088, 1.058004196794707, -0.28297565136035313, 0.12083201814164701, 1.0860520479089957, -0.4982354065617946, 0.9424906114751603, -0.6057647702864173, -0.3204627661912725, -1.2075050382516057, 0.7169000528899729, 1.658676207352687, -0.8742926907291232, 1.2124917251209604, -0.04653526986682276, -0.19771850395937912, 1.8203488505485723, -0.30836629384587205, 1.187330482608963, 1.1448089662646752, -1.0453515405213527, 0.4658546513127195, 0.8127869629762224, 0.5871070636775022, -1.0006575218751992, -0.24303543829259, -0.42158293981101347, 1.169699681789425, -0.31791926201686793, -0.4606460232944373, 0.15831545169100145, -1.4123906376714312, -0.6452536283704551, -0.05450150802809219, -0.34531398526170315, 0.8022053298270065, -0.21515577532138405, -0.9750586042894814, -0.7829777072052487, -0.04188516838718168, -0.3751352868052427, -0.2631181906354953, 1.500912095874671, -1.8508447562824153, 0.4190220530821488, 2.25518714009335, 0.13563784453045316, 0.6360919133847612, 2.0760043594252573, 0.6678279113417183, -1.8148316571088996, -0.4095517630464209, -0.2670397818877884, -0.44198388792966725, -0.8831157438562921, 0.8649366615188675, -0.21810944989661016, 1.895784322209881, 1.0576476837147613, -1.5604699444857804, 0.18038781165511533, -1.9824819230358435, -0.39198991262031924, -1.8072551315041485, 0.367630507473741, 0.5189578324358778, -0.26224674423006483, -0.2315121130866873, -1.3898873098766158, -0.8638016345679849, -0.9401559733948529, -1.9928795793634848, 0.9498108674531393, 0.7098095421694818, -0.2481348421187336, -1.074940346745099, 1.4520143409294457, -0.12691859225923616, 1.5673428386029136, 0.5078811950488025, 0.5065609319100755, -1.5254566719664078, -0.11048324200069215, 0.6784278719446839, 0.05264697538324604, 0.5680926726920407, -0.1508716521011232, -0.9694020404115543, 1.4409975249147802, 0.5542226009102776, -1.0467022368491932, 1.2689033365610325, -0.8982798059479874, -0.6838866008970186, 0.12255693489616835, -1.3439173778805587, 0.8419989933309248, 0.5305579666014694, -0.46725417507836614, 0.29665998086840023, -0.023531406923585726, 0.14041970317908292, 0.3738351155170945, 0.344939198515491, 0.8754540030593775, -0.5631361332125742, 0.5605927210658846, -0.13120600836702973, 0.47770631436222355, -0.23343989598597095, 1.4338249623163093, -0.6378037747714119, 0.19014727142953416, 0.689477113597649, -0.6134774822817322, 0.03415149768238026, 0.9843996434862207, -0.12377103466258248, -0.24570079424399607, -0.5244199592005181, 0.10374792437672885, -0.7811099265593161, 0.8236689736996041, 1.165105512957022, 0.9465792573113726, -0.6192629821163063, 1.1785829341524658, -1.2138064522934042, 1.134998716135507, 0.04464383318509841, -0.2682634413729075, 0.9022120547193018, 0.26121947445188953, 1.6990254790450567, 2.144276867203639, 1.5654602009052137, 0.29948139993931605, 0.8421520428993069, -1.1850652088461098, -1.295202792343769, 0.8796343784112031, -1.0445999608202927, -1.1086434940793222, 1.2916056433705492, 0.7367488120156622, -0.3831381835318592, 0.9281540680021368, -0.9452907212915451, -0.4357297740154819, -0.43250684919968524, -1.3457067837938974, -1.9094250133146047, 0.5311469876675498, -0.3275703055743746, -0.8419538832604123, 0.9142010646922963, -0.9320862900027367, 0.3351817831976184, 0.8166556357351411, 0.6502118789264312, -1.2774604780450682, -0.4814462905135243, 0.26094681900513583, 0.17072804339859557, -0.011788403283664237, -1.9972694724851732, 1.100573938527471, -0.3037753863319638, -0.15358070465900345, -2.6627451501281145, 0.3927190761257236, -0.6264834178902842, -1.9534433685781978, -0.7327019922546989, -0.19960439757772466, 0.46609297812210176, 0.895441452507968, 2.3549068530260064, 0.818707916840744, 0.5284236953409124, 0.045663757608841504, 0.9514937424680177, -0.1467498803517036, -0.17587410263868006, -1.3522451016834651, -0.08417284019214788, -1.9506217597143634, 1.469638603965044, 0.0007121038093892314, -0.1294724057571142, -0.06284027278520278, -0.7797028522094573, 2.054026334102754, 0.11020148036282515, 0.0002648871906722986, 0.7002083032035, 0.8270289307502053, 0.2568966673789904, -0.07135281719293687, -0.10545950521202321, 0.019285953597055358, -0.7083671845196521, -0.9688415732221434, -0.5119195152476272, -1.297138726424347, -0.25703331514176325, -0.7028295862097007, -0.04064170608330017, -0.6789536572919235, -0.4006982741334506, 1.358272233355213, 0.6474455157484394, 0.5865936475987872, -0.20180024484472803, -0.524443538447565, -0.04368279257346206, -0.13101019092457272, 0.7498045222512839, -1.364709243969335, 1.87422002311122, 1.4515805538283557, -0.23447932768191962, 1.6310139618415282, 0.26434394358707775, -0.9871750325537209, 0.3377455408619852, 1.2835540683833566, 0.2893156204114407, 0.19187819839194664, -1.701884040692851, 0.26076930051980884, -0.05649203165083968, 1.501856797392043, 0.27371930970786884, 0.7806416650896566, 1.886958600870718, -0.690622260753144, -1.0814488680225274, 0.3535129072701089, 0.502317446969482, 0.32098392820200283, -2.3606075619616074, 0.499025974528845, 0.3765163125708212, 0.41945186995357275, 0.9311568833413439, -0.5814102174727412, 0.009542442806514447, 1.405873792987674, 0.6940822574670603, 1.1307145323912944, 0.5609632655036978, -0.4999185622302361, -1.5645639638673958, -2.2776034974394124, 0.29925857126624184, 0.26881462774894416, 1.8107330729444346, 1.0203256641062612, -0.6436759939394245, 2.1667595626897023, -1.3678744951035684, 0.8863369496149694, 0.262104395198757, 1.6279382742820783, -0.13657834834860558, 1.9723649510154495, 0.3981980847148391, 0.5036026093992483, -0.2539828214047159, 0.10356925703606278, -0.9054045123678625, 0.024044418356777307, 1.0967003636756651, -1.935934094611764, 0.3194565359791723, -1.5270914234923527, 0.17630054703526257, -0.6513020662175972, -1.4737512994388082, -0.19114631069259475, -0.08000355309150485, -0.038224123117401976, 0.9907942914353483, -0.6379176160354375, 0.6642238795793958, 0.709115947024012, -1.619909967457522, -0.3127372651123343, -1.186642145070957, 2.65753290854836, 0.5986929542106306, -1.2348357005624402, 0.3272204433422672, 0.8228077635522764, -0.18019869161589788, 1.3458692675396953, 0.349026859374902, -1.1129355107081254, 1.7131956573434668, -0.21071653855624212, 0.6399263417445848, -0.18165952192889198, 0.024367882622857016, 0.6464292277802473, -0.22430528135249783, 0.035211714558065675, 1.5446225028635858, -0.4021373647494472, 0.8097591191210982, -1.4012208451320294, -0.03795755603693227, -1.4826132789890458, 0.08086399102667685, -1.2911208422324303, 1.7942787499686679, -0.8035572847170696, 1.942336546520348, 0.18107051149726075, 0.2120652474055104, -0.17490278189179417, 1.0171691084447196, 1.268092163429658, -0.44229193347832974, 0.6029810360237634, 1.8987624425676515, -0.4774595310805771, -0.36899650202832196, 0.5477149628489298, -0.6305683758350469, 0.6667246732287643, -0.29592751433542014, -1.9934131298243802, 0.4672583868028304, -0.567778808191383, 0.6527776777146544, -1.0875138736199663, -0.796422946694034, -0.4973517359813609, -0.6795434120410053, -0.4325883818321711, -0.023633208888993704, -0.5580836915290469, 1.466111453785787, -0.7493989366893965, 1.4098496456720688, 0.44070917202532545, -1.9389082156185273, 1.3470471248508624, -0.6222224850430215, -0.5820873474283222, -0.49693186176383397, -0.3295477301346578, -1.3903306265810413, 0.9821674082257108, -0.3224822186750047, -1.0479467217963172, 1.0717524141596873, -2.48985624385126, 0.3689352744880709, -1.4591754985449776, 1.451457729015561, 1.2337049405964124, 0.4354304324409207, 0.8698070222106377, 1.5701762601059714, 0.5439717025801611, 1.0291020195116027]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_1\", \"values\": [3.390150597592154, 1.4302337522409763, 0.7261182596212132, 0.11785583057321353, 0.8946490847704633, -0.9585968485663714, -2.408281273233175, -1.2451909055109183, -0.39318119622985265, 0.7704864805245077, -2.465414797076077, 0.31908962234583377, 0.6488393280485721, -1.837741518445108, 0.06565795718624809, -1.3813262556316492, 0.09070552711514335, -1.1087368992758602, -1.2750096019715782, 0.7017717662610463, -1.681971283779192, -0.6152505468243434, 1.1923713220052465, -0.6753284438727284, 0.5048596167564458, -1.246074737040869, 0.6076565661341319, 0.10033043063701291, 1.007217912675793, 1.1933477826837815, -1.0959235742945668, 0.7591564869618302, 1.2944301237463742, 1.3136528121675157, -0.6974807898287332, 0.27222856313959787, 0.1474513133447329, 0.6849631804683234, -1.1321413978925663, -0.32711429664890207, -0.36732817349070146, 1.0863774836739784, -0.13716377742409117, 1.054604767115586, -0.5686577083008482, 0.14778820737731718, -0.30287401079481713, 1.082978609529759, 1.8031985747199906, 2.0501402390643513, -0.7515102659461157, -0.22547512278049972, 0.41653728413801755, -1.200645541432635, -1.2404780404667255, -0.4211648072569566, -0.7815223338976073, -0.49930874329315245, -1.1240708399436619, 1.076847081587445, -0.2392814864701272, -1.098485435957184, -0.361917331499052, 2.3228439813612396, 0.5962133023077708, 0.1687047699132874, 0.9770515362036299, 2.7021316021254336, 0.7278910160012763, 1.0567720976405623, -0.39865445506754493, -0.20484506517188397, 1.1269244030433052, -0.8225182265741862, -0.12798162532494262, -0.2395932608976778, -1.3432610836925363, -0.7774345006447394, 0.8152994006455487, -0.040968062787970314, 1.7846115670258624, -0.18590757470503258, 1.3170648727057117, -0.3525646019536365, 1.9357365059076426, -0.5027514875793355, 1.0303539859087905, 0.9553451465537007, 1.1231139441219977, 0.6770340245755837, 0.3399974007341839, 0.7858573253988158, -1.631090003382529, 0.6052566396513608, -0.6645035784776264, 1.015719414775131, -1.5406080071452604, -0.1329876131536617, -0.5406742252711986, 1.5756794184114071, 0.02027669817543514, -0.545471863188603, -0.6204939586916725, -1.5900643975207842, -1.3579266993348984, 1.2867127238988891, -0.7964247552813449, -0.5173281852881666, -1.5495383855787468, -0.10020913586775985, 0.8139160052808811, -1.9979062835481372, 0.4856487837420593, -1.2950322288984217, 0.11233967228379033, 0.11421966029783846, -1.3160541640085315, -0.8453901940248225, -0.8173843427028066, 0.22577297060405732, -1.5895237779228117, 0.2064243152834354, -0.09784926314644717, -0.039449654913008385, -1.2027028915902251, 0.8034073330628417, -1.4499201310891754, -0.4933913458918761, -0.32212121815206773, -0.583267406864137, 1.640331357589351, -0.7556367297164164, 0.0600201258432038, 1.3861223752019438, -0.34796452681139856, 1.1325976701843987, 1.0596611617556349, -0.003173462361514886, -0.35312119633414474, -0.3324954442821149, -0.4106055380670834, 0.9986611878804745, -0.6806578746869338, 0.9368668042319168, -0.4352570051478774, -1.0103990780885252, 1.962044490205894, -0.3036977043160294, 0.7125199495556237, -0.7518442257721542, -0.008627960890777312, 1.7046696248408058, 0.5639259195860041, -1.1593534376657395, -0.28286681012539705, -0.3213213793154665, 0.012664828978323174, 1.6080401683536636, -0.23880783646023246, -0.9846888471337842, -0.049979280779618114, -0.6218420334292525, -0.8190547575956899, -0.29523166786709737, 0.39133481108574486, 1.0699889450399533, 1.2022368292768326, 1.527191562003582, -1.4483122264129304, 0.1952753406071639, -0.014244976413270787, 0.05284200040417471, -0.4114200112707551, 0.45427910195319193, 0.945203234390488, 0.795277882207013, -0.1349422989171734, 2.643815941835046, -2.4392704769807674, 0.16663205254961452, -0.19478778665294436, 2.140829668848795, -1.534661226533286, -0.5809022128113979, 0.8287662549149595, -0.4936271962494104, -0.6500170304622052, 1.1972535353635412, -0.12234764135997382, 1.237197335861291, 0.759992957206122, 0.595182765743185, -1.9486385064684348, 0.31280567761568245, 0.4565528116186598, -1.1453628423521827, -0.9699093681303845, -0.12496547084309191, -0.7538413023097061, 1.3761672789542287, 1.6607508319859308, 0.007655753107041696, 1.456814720872092, 0.3924467780108993, 0.02049406479718866, 1.1087823513997492, -0.29720964215635187, 2.1811634430581868, 1.545073600429917, -0.8385558610736175, -0.7178950987315055, 0.8993175092324954, -0.8852395396959879, 0.8490668373043606, -1.2853206529152317, -0.1856789284821593, -0.36543239749405204, -0.8617877755779949, 0.8399481645665249, 1.5650119982179247, 0.0319265913614902, -0.5390419152815633, -1.310473125339686, 0.5133453576050415, -1.531293738167107, -1.1355261373399663, -0.2735995981703857, 1.8841569398931628, 0.5760133881039079, 0.4753305325845381, -0.637447227946005, -0.2783035594896455, 0.16310067856379185, 0.023047441008098316, 0.1331978692086349, 0.8006363109919731, -0.9023271491657403, -0.07272420440530124, 0.34900648550098995, -1.385591534777258, 0.21979296948153723, 0.16425636316931921, 0.3086170180595164, 0.1835426986278058, -0.9454976480469972, -0.12337046325038642, -0.7956914578962805, 0.3200497454069942, 1.3176035191830275, -0.8301162153678416, 1.0600393585507413, 0.15122735432630616, 0.4107007580114497, 1.7109069177201595, -0.7382576124582984, 0.6359666440578154, 0.619022505145794, 0.6863306091312138, 0.17677920026280122, 0.10701972910868213, 0.9171137719980856, 0.37477987893099035, 0.05656948336487954, 0.8854105450614767, 0.6096214682127529, 1.0882315546119052, -1.7124073139891167, 0.9209718661498583, 0.551010981091306, -0.8288491069588594, 0.7511344190185181, 0.7487788009917522, 0.762020378446365, -0.9921823013939647, 0.2111668133940563, 2.7858958395443363, -1.9530850305444318, 1.3674963434570968, -0.17019538165463616, 0.04647324591519046, 0.43954979411827594, -0.5113547693436873, 1.5665262575696264, 0.7096006686905512, 1.6296510312664354, -0.20044848964210885, 0.5355813203211609, -0.9296736342532185, -0.4811693941684748, -0.4668175906876036, 1.028598876550222, -0.8791329416923636, 0.27464332248208284, 1.931239232165382, -0.35748020631971655, -2.5831408718869118, -2.033080970700788, -0.20238474050979466, -0.11976949454610833, -0.5509974471722122, -1.0818525898901679, -2.0206139636303746, -0.6775799762664132, 0.8515019316338169, 0.3287117376522366, -2.2764585689082137, 2.8714085149034263, 0.27733168285875115, -0.051960291527858575, 2.006310334436029, -0.2784553073213845, 1.9420789497980744, 0.5591585086904599, -1.1707216264563685, 0.3152229317601618, 0.3958031605914019, 0.5216917135542957, -0.2500793038795275, 0.9273396746083745, 0.09567507063454715, -0.709982904704442, -1.2121978134835392, -1.5026821210418955, -0.5988826064576246, 0.8987149888051686, 1.567865619388131, 0.4197392607480265, -1.4449727583643286, 0.016954129766795677, -0.1540142899872404, -0.9090522490795677, -1.1379114116204607, -0.912429453353333, 0.17612069006032433, 1.080011285623435, -1.8318332941303657, -0.9935696152549638, -0.46683795187609595, 0.18533253283170434, 0.9469819789931251, 0.28299870274078903, 1.2377181281937812, -0.1755839727692407, -0.5990063245520135, -0.7438966130202328, 1.0582765983836466, 1.0232396018293672, -1.6536108716294515, 0.5624735291246443, 0.9438881424842147, 0.38572779375669225, -0.22310372515393265, -0.748783011841904, -0.08111579552223845, -0.841123743734981, -1.2321772774984279, -0.32638286140571054, -0.9215253973538825, -0.5834594556284124, -0.22944247366776446, -0.3290685567145374, -1.0444077865940815, 0.10757190302143843, -1.5518656840680338, -1.5380353649635252, 0.06746744712997989, -0.33591761796447267, -1.0454782604157546, -0.5459887607290893, 0.4637812840487518, 0.7778938761745822, 0.3833198728117574, -0.15546589778285647, -1.8116741791998798, 0.12179001440390196, 0.23635763746725097, -2.2337837611684366, 0.9060979776493943, -0.07712437188805016, 0.549238284319928, 1.623696214414143, 0.1566930945689831, 2.4279868821751416, -0.2019371975496437, 1.3396162352243377, -0.4138750926598349, 0.6249556105099796, 0.17941212755437055, -0.2372161942560746, -1.666136162662016, 0.3267379549952478, -2.175683072150262, -0.4141811716383646, 0.7238963549756078, 0.10515820267207637, 2.244018047156328, -1.1225936848038507, 1.1362865985654897, -0.5822155971182652, 0.2679512355471539, -0.6290942050265875, 0.5055980545362672, 0.45882511809205123, 0.9993761046473448, 0.20125581527096997, 0.5391362612621361, -2.4402139896905624, 0.23223612476926675, 1.6340235850056914, -1.7769799287085914, 0.061806452087465956, -0.2721584686602034, 1.4147400788693714, 0.014341309648113662, 0.4016922413007241, 0.3735477643074779, 0.15585573041618744, -1.4455044569406081, 0.28519537177797144, 1.721036171995137, 0.40417472136426524, 0.16179052444530267, 0.5363612395498111, -0.2368918223424472, -0.09263707965271321, 0.2574988935539189, -1.1092512866945763, -2.2340194541118454, -0.15799782638507437, 2.1890802670480394, -0.32230330790836936, 0.7503050537466985, -0.9499625326632449, 1.5471031462835536, -0.1488566333310356, -0.6657461417628983, -0.04497403398738221, -0.9038229643878241, 0.5094526763858274, 0.00853133894612783, -1.1216190307766187, -0.46995148763412126, 0.38885906288027816, -0.7164604349983089, 0.7369040944661032, -0.042434772368088736, 1.001528788475742, 0.6844468711422961, 1.865305304440241, 0.5562297752327152, -0.18553402346311057, 1.2424694973266, -1.5451465497214554, -1.280601335533992, -0.04286492035751532, -0.5627167255872307, -1.3223275769179668, -1.9016814567226825, 0.9353351261568308, -0.8939841722960352, 1.3953075306135758, 0.9261793464102202, 0.944804480760586, 0.09554331262811853, -0.7484391717864625, 0.7008311237565071, -0.450622961302371, 0.36203123001134757, 0.9530461576250815, -0.5435088765491337, -1.0732154905095952, 0.2233983717402218, 1.137434830084321, -0.43228128003338334, 0.4327603404858656, -0.9514209492624649, -0.31006167663277207, 0.76252308617433, 0.22603397618961002, -0.9376677187850031, -0.8891495990865179, -1.7589096297661893, -0.8533482870621352, -2.4988031967160595, 0.23684899805541804, 0.08297903044315494, -1.5505630913871327, 1.0915571511139421, 0.11029997987749648, -1.2595586313232903, 1.5206326436479354, -0.6569154398593829, -0.8033270617903734, 0.7780283142683885, -0.512338538121701, -0.6229524547536345, 0.10375064539865247, -0.7063893287162603, -2.2704133272490044, 1.7268763197890253, -0.4301831316446391, 0.12045904968520627, 0.8201947449162409, 1.8978973296993866, 0.41307312439414307, 0.920557974058002, -1.2420154811812945, 1.1421946342130505, -1.5789033834493509, 0.9563464168408944, -0.20384533317905623, -0.16840439014785077, -1.9967731991148918, -1.5766891796539606, -0.9304649730751139, 0.16234448114097638, -1.1168664727995552, -0.7664936994258303, -0.17522882061167455, 1.3024631822040487, 1.1510216062126817, 1.345547909240064, 1.3156217370675838, 0.7644249184491391, -0.5216169163038926, 0.02796706203645407, -1.9771363801281208, 0.6562805513303277, 1.5869478878057701, 1.393974274387637, -0.697282507166192, 0.46887718873747336, 0.32472066517745385, 1.6110189051675756, 0.0901386680413495, 0.6879118365290005, -0.501778398428023, 0.1383915157427164, -0.9798183603265124, -0.052640025057326505, 1.7982616070057393, -0.1995082964871866, -0.7844372385049687, 0.5306242761305535, -0.5365147698810138, -0.29891177029216426, 0.6275900495267772, 1.1944360962847924, 0.24723647879835747, 1.6035952648450584, 0.2231766861221861, 0.7560970622133174, 2.311812874605047, 0.7320830979191645, 1.6676853182199352, 0.30564495269789416, -1.2594205360341002, 1.0000872061677175, 1.3677889175562365, 0.26066245524844184, 0.6427209635931683, -0.8045925779911788, 1.104032213495694, 0.25526432332670174, -0.7866793521287456, -1.1266015526420485, 0.9617910647681893, -1.8893345440564484, 0.12097207676465888, 1.0035592659405321, 0.11117874173356251, 1.3909987178562773, 0.9470086391883472, -0.06255091743535969, -0.03473788801249752, 2.050412162386743, 0.777273539492415, 0.013608273459858997, 0.4924476947276967, -1.0932117420381084, 0.41311398900066104, 1.0059291788647762, 0.2440940421561028, 1.3780924236732874, 0.5841529428263608, -0.09181641956641297, 1.1042090299027232, -0.789527200637923, 0.31732572881303245, -0.6466052002365443, 0.9622398730823447, 0.08574714976067109, -1.066802069648781, 0.893812125837349, 0.4274258844408815, -1.2550528661117004, -0.8241089815930802, 1.2942149742552964, 0.8029166599618806, -0.6260143010085171, -0.20318636923663302, -0.5214683410058041, 1.5288111663206838, -0.9564879951633622, -1.555451929593953, -0.3195923545791215, -0.2502276133892777, 0.1661612282837454, -0.7695182951659266, -2.102978507366424, -1.7160347992600586, 0.02345896094959797, 1.1143310087335647, -2.7317271246765573, 0.8056101286183688, -0.7986630325726377, 0.5474674863171077, -1.7917523200771275, -1.0098727381170205, 0.9276944852497123, 1.4624362914397273, -0.8085754359346555, -0.9519334877951322, 0.3208259870486664, -2.093926418158512, 0.22616309184386754, -0.9797090049041991, -0.7440948541454389, -0.06588586791069155, -0.5970067371116807, -0.5007231166931684, -0.3244702117716596, -0.056293794630392635, 0.5838565505468813, 7.229458919738313e-05, 1.5572880486855394, 0.3832201525181897, -0.04097301174715938, 1.002569766624799, -1.2827481390079636, 0.8236599360927281, -0.6353942475838797, 0.9738115250096915, -0.0159934253816724, 1.2192100792820442, 1.8671153762656862, 0.017544317082359026, -0.8602399961981236, 0.49816990971507646, 0.5376113678650084, 0.30340268351816063, -0.45715858789848385, 0.06697062078192952, 2.11368606903524, -0.896242216607583, 0.059329211635009274, 1.053166384238966, 1.6321473090448217, 0.8983627143945226, 1.2802608688982862, -0.09469656403525258, -0.060933392856459795, 0.82774365985007, 0.5191366310719646, 0.7800702019446224, 0.5903675148106686, 0.23181236607599742, 0.6798308727320278, 0.2876566266927805, 0.716302954764573, -0.7347294548792696, -1.0843550864239995, 1.2420739605740683, 1.1757668505240855, -0.14985478623351664, -1.2721347835902337, 0.3388378082305193, -0.1584706288594117, -0.8724052829581096, 0.029187668725106638, 0.6479195992886987, -0.07263784246919631, 0.3747337396957997, -0.17829845595500474, -1.5742891785568047, 1.6105810074833673, 0.7109108589891215, -0.31801880407523536, 0.030195144887583486, -0.5997795366773334, 1.01880412814652, 2.5313925791955714, 0.13509239949417357, 2.130766097300138, -0.5141712532289358, -1.8198425667638152, 0.09448939009468205, -0.6628212911076192, 0.010850660063569799, -1.0819597710191575, 2.0472965648960164, -0.5897157828267493, 0.759652409820957, 1.7938970625607855, -0.8840591297614526, -0.12084449870808037, 0.14696602464669994, -0.8051666023470482, 0.008007648325667558, -0.01891447205295159, 0.7958845936932074, 1.3509438007548509, 0.13196179098202343, -0.6328781747163902, 0.2223171530945973, 1.542867970405004, -1.3788284129404764, 0.8971631790336206, 1.4320354825399473, 1.6569835813798088, 0.9195513425591965, -0.7330200148123459, 0.6093874539411427, -0.33082764191361175, -1.0221138016584104, 0.316579762432349, -0.8051374057282658, 0.13184287809626413, -1.0007228581723202, -0.31039554720725515, 1.703329851900884, 0.5299215838949553, 1.147403837532591, 1.3364017736928653, -1.183197484806267, 1.5235759988197548, -0.13570815225875257, -0.19557745522079317, -0.270488352166881, -1.2724778132083034, 0.24413226769853424, 0.21666218639789922, 0.06863135330463267, 0.431008356229063, 0.7872908825705275, 1.06797196810874, -0.1114929410019386, -0.8183258326088465, -1.0072480203609093, 0.9042380738342878, 1.6288513490740417, -0.04340667398489781, 0.34608513851018513, -0.3178082806999122, -0.2695371997844296, 0.6426454179884817, -0.6815684511304602, 0.8148892596353081, 0.4242525776238161, 0.06359622235952789, 0.9394039445745591, -1.4522617196730032, 0.929205062230212, -0.7791877330800081, 1.1439784121054533, 0.6830854634612088, -0.7004817473694287, -1.5098884026024517, 0.42048576906185425, 1.5237050892158015, -0.6608834615509167, 0.8706894623894055, 2.463393714408174, -0.24116920667346897, 1.7008288629679935, 2.2069314172504133, 0.445779616094182, 0.8057173125864285, 1.0987603301320414, 0.5515189856775266, -1.0786389704368338, -1.4728288585164484, 0.35120290077593275, -0.48462190917254244, 1.8636369462972635, 0.6276123244262198, 0.153249899349852, 0.4173935148320024, 1.54341317144614, 0.6984809452397992, 0.8460051963631486, -1.312491942739206, -2.081099548872133, -0.8073221997214828, 0.4613653598182473, -0.3341416524377604, 0.5519423145194758, 0.975410918506237, -0.8494869554097831, -0.05579254349935248, 0.6195478423200006, 1.4733018999084007, -0.22070532486549585, -0.6333924239990947, -0.17100819784423588, 0.42303498570432546, 1.0818340388908914, 0.935083914287754, -1.5774194691455397, -0.26643670672187597, -0.9184356507391682, 0.11068871383141748, 0.03261770994785405, -1.5083010630343512, 1.0017322135874096, -0.9694437835195194, -1.6223126547013376, -0.3522646691224996, -0.2239359731290704, -0.2311506826613162, 1.3789817966866813, 0.4694670385613408, 0.10366284186482241, -0.44448854735951837, 0.7314300512865795, 2.1927424780811893, 0.20698705203005283, 0.7412175757365396, -1.5562084505200735, 0.12857295066114732, -1.0071852767279827, -0.27268994905458444, 0.7281820424836414, -0.2842085736479309, 1.3095185290806528, -2.1063864346542394, -0.20221436526467784, 1.4753971256460727, 0.6265326420446855, -0.5799094937105014, 0.7578951772596919, -1.5722583496773088, 0.0029426566110270815, 0.3791742780772177, 0.42373325916362675, -0.34033242138443875, -0.23524872314109987, 0.5711019989489267, 0.6647987476210084, 1.5467911779959551, -0.9996535841467238, -0.28303410245517524, 0.27133208863434516, 0.4286706173398455, 1.2341922314225906, -0.4781068122294536, 0.2957472515198557, -0.255821480646397, -0.8485450056200013, -0.20889287598719802, 1.0172515342025228, 0.0003815210692335499, -2.160090931248396, 0.09104294093661487, -2.4602831646606727, -0.8606851247046059, 2.454036255619465, 0.40337206859848285, -0.8404397567636644, -0.2886810363393458, 0.433920662084845, -0.8070298357788774, 0.8952198414614627, 0.30477298503645234, -1.6605810401177987, 0.6983772075758725, 0.10964555136046193, 0.8048878506274777, -0.06599446758737058, 1.1666267228990408, -0.6313610736136432, -0.8328835876707313, 0.05475637154727589, 0.620695485474989, 0.9413774271347, -0.45254704466919654, 0.20797742427947663, 0.19656133781093277, 0.408826833395535, 0.7408299889193309, -0.5558958408635405, 1.4800075505057155, 0.5573358451541022, 1.7773519983367685, 0.07951598038840299, 0.7925734584141054, -2.0742626212850492, 0.6936534625521333, 0.6783182078920968, 0.11323043575151319, 1.4036475132870117, 1.1823844206247864, -1.0054975340282408, 0.9985172998286668, -0.23996650622913193, -0.35479518845229335, -0.3743595572558998, 0.19402913673523345, -0.10304594327420526, -0.6192060837643676, 1.5138065829208762, 1.5481716414610105, -0.2930394429259953, 0.015156342630796626, -1.5722973180164193, 2.3640295922847834, -1.3438614502479556, 0.5688603007147864, -1.5792983970948529, -1.5035253261470007, 2.1897541382480625, 0.3207364970464436, -0.4972036183699202, 1.0690646464176135, -0.04670016246262544, 0.5067972302218092, 1.2394886688332007, -0.2113089585138063, -2.6140743407956255, -0.8475056219431811, 0.36936207074661265, 0.9092688560592825, -0.5011783047590135, -1.1650702962864339, 0.5870893430288191, 1.3231645423110807, -1.0385900537851127, 0.07444521233995373, -0.10859824927421968, 0.8694176168039991, 0.4607396801532449, 0.0868715813798077, 1.7162656898490036, 1.5853944033516456, 0.4802840974224912, 0.016981595921415807, -0.5799290556618782, 1.4176147530812853, -1.5282190337075794, 1.7772731358922949, 0.5463405742107804, 0.4155585436430609, -0.08803359058466308, -0.9902809659278318, 0.1516797297861266, -1.1107735127676643, -1.0861231346626703, 0.29269856525022636, -1.1684656615719367, -0.22345728229308542, 0.17717108683637803, -0.05367909106715537, -0.1675640968128387, 1.948835177479333, 0.3342044384604477, 1.411116652113883, 0.8930927427981388, -1.097247726940729, -0.059883364552356905, -1.7992229487641485, -1.8182402607232948, -1.6232764694601058, -0.17864940764509107, -0.06902569051109124, 0.8279690088650282, 0.8326513251376091, 1.5142810980890475, -0.13185601048068135, -0.7172673760665164, -1.3608535791210197, 0.3315163139660448, 1.2084422774745724, -0.1400456128633923, -0.20055945812947085, 1.230797186237703, -1.4002780974202746, 0.7169046286702021, 0.7422126408303985, 0.6218884760051576, 0.11255545189260989, 1.055612589316871, 0.40928849376182136, 0.2575114268040085, 0.926925195567164, -0.9248719004250872, -0.9734196942745994, 0.5277946992000923, 0.21434223106992273, 1.5555237369828043, 1.1213633898628326]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_2\", \"values\": [0.6370681989976869, 1.4491514855651564, -0.005743644907161563, 0.3918699859760779, -1.76550630130427, -1.4209463898613968, 0.7574213330147433, 0.4005389392150147, -0.2540587990063413, 0.2572847161719152, -0.18702702018439726, -0.8184090389196464, 0.820828780663561, 2.9910812794676285, -1.9820147894823394, 0.43463271473787135, -0.07991306213470484, 0.7087158935938894, -0.09501039038482299, 0.6782007877408383, 2.010016427260826, 0.9448502593369316, -1.1114429698576276, 0.010497289636056768, -1.1696280379359099, -0.041349129029678224, 1.0014500840706628, -0.24256835407285124, 1.983170403817495, 1.0574578432948598, -1.6081839039487273, -0.7941142775284, -0.5179697049343251, -0.1399450964137424, 1.4044419732634215, -1.4060111417632417, -0.704921276816417, -1.1259795592861115, 0.02931415470726065, -2.034286307780706, -0.0838303229340527, 0.07152308011624858, 0.43853279419023855, 0.8672792287819509, 0.154438653202835, -0.5266979732576567, 0.2449037305070474, -1.2589815567539873, 0.7918000070861713, -0.5560516234279291, 1.0628929191062397, -0.19116975888857576, 0.49800729110122566, -0.8884520785575462, 1.065370842709935, 0.7384481987795587, 0.5252216988151213, -0.7050597196899271, 0.5584436879949096, 1.3196331369617784, -1.0314297319782408, 0.738856209325433, -0.8140274861904531, 2.0948740558998686, 0.652305508365378, 0.31474998704688056, -1.8444757468019959, -0.17353965786983883, 0.9008133509076991, 0.2743399196486772, 0.16495317574986548, 0.6284635377023611, 0.47005417569484165, -0.9912048309231278, 0.36057506282026064, 0.7488533697434804, 0.7050522217115557, -0.3132290252125655, 1.1202809828522866, 1.6010948224709745, 0.3602308117950171, 0.2437260503148695, 1.0369043876177273, -1.1369304904295832, 1.0215846346426496, 0.2789732829691985, 0.2112152895295343, -0.0838527980717621, 0.07075515604750149, -0.808641158418247, -0.3016303211438428, -1.2913840830912482, -1.7001481636864928, 0.1921224976237839, 0.370938429375799, -0.4346323985976851, 0.7013497368150944, 2.0510879367677224, -0.8859700139137764, -0.35996258941649806, 1.0029615863821206, 0.9464525499216925, -1.962656842651686, -1.2062612148326006, -0.4137241770659486, 1.4764095100121075, 0.4543609315875999, 1.2374277942961, -0.6941259512601221, -1.0510436123682665, -0.6412977019727906, 1.7681536280040488, 0.10604116724945012, -1.7312436566699079, -1.0540911544922085, 1.206260468434198, 1.520789482044815, -0.7766004288622869, -0.06297128119560753, -2.7868195848131134, -0.46459776018404336, -0.41726429639511786, -0.25183316607087075, 0.28801019575400333, -0.6123279730907281, -1.9246779806905705, 1.9761700963457944, -2.758657657120929, -1.1897696769344293, -0.5791432883378173, 0.15008220098103817, 0.04070036089953133, 0.4822089585137131, 0.05043366343601174, 0.4311798527836695, -0.013979753276868926, -1.289848153156137, 0.7848929652251955, 0.32991835598912433, 1.660299039474703, 0.3355657147402439, 1.7207245441759305, -0.2852732778891765, 2.2175165021769683, 1.8918954841305757, 0.24155188943554812, 1.788377978650597, -1.3326297838754022, 0.5683328307143208, 1.339816900073824, -0.6122728544179278, -0.2943649825403611, 0.7062219561957348, -1.32270646274913, 1.1737502275451417, 0.9837781693124729, 1.274297106296499, -0.2771986580133764, 0.3308533319091667, -0.6068982883899594, 0.09418121079252711, -0.3758674616703213, -0.7245971993655707, 0.8929836079686734, -0.22001718137312545, -0.3774590661975851, 1.23977592282276, 0.17210708389164725, 0.1640664534214406, -0.6782774450467198, -0.009502535063846051, -2.7864387574505347, 0.733096535839407, -0.3837982005155095, -0.062423748591669166, 0.023406332588988485, -0.14407903656966084, 0.8099148280297642, -0.42879458030375234, -0.7722540585051925, 0.0528405780857927, -0.2750388267321752, 0.8089422291320356, -1.3205079484936675, 0.5240295322870495, -0.40333717691106347, -0.022786418916480925, 0.2525338937837491, 0.8623370731149409, 1.4405919721006821, 0.13651589473917397, 0.4229493014074051, 0.7639729269474962, -0.2372819777506933, -0.03184852525624384, -1.2069587000851167, -0.5908359845564565, -0.34871420432830913, -0.24606387257642937, -1.3911296621336617, -0.14064878654957938, -0.5269422102789545, -1.1555356724039296, 0.42678063805723876, 0.8608713988601003, 0.2637545503088238, -0.4021794810958692, -0.01506566684940135, 0.13299641541560256, 0.4834687512282314, 0.9568611541180667, 1.9292231947987184, 0.7686717817650394, 1.4669346701011858, -0.6832849394571601, 0.8282994763149856, -1.5176414627191919, -1.1826538403880158, 0.4109652132466459, -0.996045559120031, -0.33996285272493443, 1.717339005280598, -0.9947755447314327, -0.14562480119314977, -0.30023905132316253, -1.7705628344650626, -1.111253421109856, -0.2943098294871587, -0.80571000846932, 0.6833879610797549, -0.6469372307352143, -0.015918597263548093, -0.05628524312746987, 0.6775705349608422, -0.6986522065830331, 0.11090056556633791, -0.7572555704894969, -1.4304839198344763, 0.5017801014208477, 1.070492854344132, -1.2578920002956706, -0.5721939599328878, -0.01909838237710774, 0.26593299421399863, -0.3871498653827739, -0.5062263466315051, 0.21402647510321637, 0.22933950585482046, 0.849547966444643, -0.3175177101154417, -0.40127107389239064, 0.5329928782011056, 1.6338624205221652, 2.0725376641204463, 1.1671492248941513, 0.15620762813417935, -0.1262374114563637, 1.8060835021741157, -0.07686480153075571, -0.6610583300820839, 2.4844914853916964, 0.5453095139667454, -1.7632502171994047, 1.0171421893082686, 1.6386167945567987, -0.378070609718752, -1.0050251690932497, 0.2282268799605613, 0.4351166101350181, -1.717642133401099, 0.24627680723732334, 1.4086010239572366, 0.29504200641736344, 1.480159819065196, 0.4226296670310795, -0.8581227344651137, -1.8400734665461993, -1.2745870734300446, 0.019030831296464143, -0.371302449011269, -1.1111618358105795, 0.4599544495877659, 0.22517905256630444, 0.3365901719845614, -1.0976409664861657, 1.0478458474277195, 0.3370300427951589, -0.5054400030509006, -0.2938701633886139, 0.1888801450204387, 0.03332235704402129, -1.1165856347627756, -0.6061136606114831, -1.0408394963159306, -0.8694303050471369, 1.2639638347283544, 1.3064716778802166, 0.6503333936192187, -0.2638182712541991, -0.06462917770443279, -1.2431272714282122, 0.30198634799613905, 0.7424842035330751, 0.19453067662625495, 0.8047597154390836, 0.8932847493939764, 1.5012636675879298, -0.8667149814897833, 1.9531377186749004, -0.8899709556507105, -0.6076522079780163, 0.27061160608639434, -0.2161818649166261, 0.4550350879887, -1.552679851881146, -1.5089906362161207, -0.8942109073799644, 0.6293195574011023, 0.5895500805844086, -0.3573549413772895, 0.06736288362787977, -0.5775733907280933, 1.1675679418049556, -0.529486936612955, -0.32584973633635395, -0.22817655869640696, 1.1095567093676297, -0.09832375020269284, 1.8462111967731827, 0.21274686223280415, 1.9395421248446931, 1.0998345619545429, -1.1915263094119193, 1.2243149780631735, -0.1532542018544039, -1.1839532744299592, -2.0621180526230454, 0.9463695310857729, -1.1810124053617137, -0.7606667095749522, -0.8518146515769967, 0.6851046563611952, -0.5908728327210957, -0.07689028566650431, -0.33300892089866785, 0.15252681248212668, 0.2616840330995044, 0.45705354901681716, 0.5110443051266814, 0.6871263735843293, 1.697292093533629, 0.7540485503437138, -1.1513808904056935, 0.46153834324294785, -0.02863243758664961, 0.4226378638341182, 2.367511564244891, -1.7325580442288238, 2.0799308977419795, -0.4252036520192909, -1.1068037151049892, -0.6113539300171645, 1.586315896230236, -1.0192811210760264, -1.0032448398378941, -0.8253770898464992, 1.065820127071255, 0.4671598330360889, 1.5941865604319962, -1.448338202436387, -0.16754627178277215, 1.223472515530074, -0.9271809022498059, -1.179916451905064, 1.0537781435865143, 0.47027527489660115, -0.39135528096679356, 0.9465183171110616, 0.09832261713114371, -0.9580429636729696, -1.9519573526786331, -0.20735321200531973, -1.446234079649776, -1.086281030758452, 1.2338201154596535, 0.7940141825372711, -0.17120023946401222, 0.7922595196532792, 0.6177096102403629, -0.017486681338589972, -0.37942455142397136, 0.6370976766256138, 0.36952362051367504, 0.5289675208957162, -0.07015605993282, -0.11159179045175506, -0.11617859188625813, -0.0461773189261408, -1.3001155666786215, 0.15723774020913014, 0.13713680504154654, -0.9660137751889905, -0.17277354854694857, -0.8337233716713633, 0.4928793201587634, 0.6296844144787531, -0.9684491034730628, -1.4756097989658634, -0.463057505392638, -0.9928047355732263, -0.08333637510408616, 1.5170326018947644, 0.335757177330677, 0.013800647814936519, 0.8842174497108567, -0.5746379636106973, 2.021743779233408, -1.5560340113468052, -0.29147167368564164, 0.5870379648476436, -0.8533823552454128, 0.3749623254139779, -1.1030642747883903, -1.9600353582538876, -0.9371776184220322, -1.0497675493272032, 0.8514944179803978, 0.5540677789193871, -0.0825894787293956, -0.5291244430417569, -1.3372035961600384, -0.7194331260854693, 2.548261672111051, 1.919399418842744, 1.1322181993864786, 0.40403854148392326, 1.2318258260522297, -1.5975570906491445, 2.0098721454919426, 0.25083495855737403, -0.6797388193565251, 1.564941488656341, -0.7105550648742122, -1.3234068138619997, 0.35122472213746786, 1.1956880205811253, 1.120788863223012, -0.7305227052448301, -1.0268387751051888, 0.4515744496978727, 0.07980351754599216, 0.5301400437268937, -0.5882198296229053, -0.7497725899233653, -0.8680454469877148, 1.5972349621899193, 0.8491870074477942, 1.2658379615133966, 0.04280370099750151, 0.22230877755862594, 1.8797530936209796, 0.6730024674024707, 0.9848160180538743, -0.5079926162494228, -0.6282860073592996, -0.49321197504148784, -0.7286071793533143, -0.1334567447580617, -0.2859728368720438, 0.5074627521132055, -0.5879283192981497, -0.9771926635438193, -0.003575843688115424, -0.23050533043485938, -0.29355103774809144, 1.2987919460801267, -0.31116918346565964, 0.5233558019748941, 0.5418025917960011, 0.5777677338424214, -0.19902050773024701, -0.08201050838617352, 0.37478836965493484, 0.9876749542642336, 1.098164615439285, -0.4851307522706607, -1.4811941559781443, 1.466249105754054, -0.8657349050532276, -1.6946240970838329, 0.9984398338103458, 0.21063081019301144, 1.4429032922946072, 0.6070966447207, -0.7362675991956982, 0.8500609394744124, -1.1977129819981194, 2.324925536548228, 0.3491069523862489, -1.590109006128354, -0.4919138574666441, 0.9558392469768795, -0.5526878138425131, -0.14871540244211917, -0.9425704713578273, 1.4665636302283165, 0.35905552625046927, -0.19955115419131486, -0.9634171506969753, -0.2825100843871486, 1.3899082906128652, -0.26217424545000245, 0.5204898270777664, 1.7203488284170043, -0.4318876040306029, 0.586527107364073, 0.4485636568460511, 0.9170337333147831, 0.9608567542624814, -0.15481244729882304, 0.7270466578272802, -0.7946503558140957, 1.1382157464337614, 1.5380477217548023, 0.18862082932962726, -0.5401870571055117, -0.36407032904720354, 1.8836717142934798, 0.06986914810680242, 0.3189611575324864, -0.4584698219668176, -0.6905732802712652, 0.3658520136990752, 0.35803138539563534, 0.7645109136213231, -1.4183436433095766, -1.5009321154913173, -1.4811698307434225, -1.868638921700349, 1.1775551564887021, -0.2075079847756194, -0.7901370474923677, 0.03685568614700274, 0.2877215201056008, -0.20185271243917371, 0.07792175969965709, -0.5174678232413785, 1.5577337831324658, 0.6678635592923261, 1.285288850481081, -0.5766715946522522, 0.5301556896032302, 0.6231699000611569, -0.4986407329685726, 1.72780771431276, -0.7582225325120127, -0.3752119391981158, 0.3507575434486262, -1.1157752288370033, 1.1307786771075048, 1.732850773994244, 0.5907314939286088, -0.35948688049013994, 0.8812979651502321, 1.5117763438149416, -0.3053346247766176, 1.005079645892119, -0.2579902030802628, -0.6367985768356661, 1.047330062687322, 0.6279803122794207, -1.7790101493517698, 1.0796842254051546, 2.2010464422831935, 0.7359798904345428, -0.6834482388796485, -1.0319009062636528, -1.2516600222422511, 1.5378703787525796, -0.6255663947178508, -0.8702519024568793, 0.10419135354848309, -0.6021857006586622, 0.7614193101539432, -1.6130077343850224, 0.019618403339688364, 1.5500661263963622, 0.5008865494762821, -0.6164086849598667, -0.5641130691564161, -1.3922172647855526, 0.8238397417184724, -2.0957530036245764, 0.6124997886353677, 0.6575415434803366, 0.4348304393247708, 1.652400393074416, 2.2889298683646127, -0.39457834768806427, 0.9936597177066565, -0.3469912695582145, -0.2309774859256063, 1.1226320584723481, -0.3946079384143198, 0.7869298245907724, 0.4242284752384252, 1.0544781774071847, -0.3969913799569791, -0.42997500933432825, 1.7750044538147247, -1.0183386249754383, 0.029600646490744276, 1.085241477098785, 1.0632611964656151, -0.19624510941134535, -1.004177086926422, -0.41055679205053747, 0.7069073825020423, 0.2312735909941993, -0.7236299552218383, 1.1297083430041674, 1.2293251282356557, -0.4181432992444073, -0.6535998042667783, 0.4907817356686419, 1.710669035211244, 0.02518163892621811, 0.6893622437605749, -0.9911004483419595, -0.05273802127968857, 0.18200276109440863, -0.693953253996744, 1.3964298144688156, 1.696229075479078, 1.4722458879647693, -1.3143220350785858, -1.1494438391402868, -0.2712894897220189, -0.2101620954620489, -1.4931742628409823, 0.2080752872643145, 0.4570662686103682, 0.48406310716274226, -0.3455843165523781, 0.2946549968182563, -0.1406728369081314, -0.7267830480480918, 2.0162693327573704, 0.21476822879071106, -0.2916325363134334, 1.4676507283315434, 1.451848409941049, -2.8463536404081853, 2.093441516939166, -0.9687773186544012, -0.6018773524620356, 1.0884140383481733, -1.624113798863004, -1.248533013812216, -0.6693458617814811, -0.20443895202821363, 1.7962217230782054, 0.2691936811492629, 0.2469086738399609, -0.95230159268808, -0.1889297990591337, 0.38788710204526183, 1.1887751264008468, 0.660955476846583, -0.2816505245079494, -0.7329368100772498, -0.905591610333818, -0.824886821339271, -1.6843519496139934, 1.0216470444785724, -2.2590370563023567, 1.8674962844651863, -0.3246577805974128, -0.5693700687763823, -0.2761825995259383, -0.506221917329477, -0.8526392665960546, -1.9258176856412805, 0.4738062833766811, 2.055937888002739, -1.9008855876267605, 0.26598535212096347, 0.23531309991387447, -0.9096483774765731, 0.024170763743305027, -0.5657103671224434, -0.9456444566404265, -2.3936515950981425, -0.8646467418815269, 0.026082959158426143, 1.0643412866546005, -0.27846551894599486, 1.0057984890681146, 0.14875137050277604, 2.2930901893383533, 0.7769550429493248, 1.6374244664659854, -0.724199689381731, 0.3945202064180961, 0.176967225030427, -0.8822414619781433, -0.6721201157229209, -0.4016607287141596, -0.252745180014152, 0.26738359551111884, 0.05930452441906258, -0.5622913033969728, 0.3505434301891231, -1.7402108701426686, -0.6702016245060104, 0.543162829218518, 0.9034715811816644, 0.10161772877009054, 0.8266416365567008, -0.0054558952006785975, 1.495894813762172, -1.1649122529264542, -0.1171382603643294, -1.4899407836000407, -2.466023368790085, 2.127584271637073, -0.9572810445670952, 1.0313174388503015, -0.7573962093596828, -1.5651791875209333, -0.48360084599067726, -0.3146691327143781, -1.9868058102473976, 0.5481263535541611, 0.008256187007189865, 1.4849606590362905, 0.7927340600372597, -0.20519953776919617, -1.2805391403861377, -0.2528192064014008, 1.3956785756108376, 1.4842789007606878, -0.2973274438888937, 0.4319239480577349, -0.9903398888692875, 0.11133878733033571, 1.8004957271383557, -1.7160394489539, -0.9384729455174429, 1.8769995116867286, 1.774230936838703, 1.7770212888208206, 0.6175146910546155, 0.4970793981342114, 0.46841460281353053, 1.2036552253168649, -0.03947185856727927, -0.29862808652579503, -0.5540142736799079, 0.1736855268626835, 0.6932819350953311, -0.46764546927382045, 1.053527911434366, -0.9316744463745218, -0.9217833135114868, 1.6592719606618014, -0.7909984038470174, -0.14438523440247988, 0.14741931219332188, -1.6577575152961903, 1.0395729140479772, 0.32846893127393473, 1.0314255265192527, -0.08068287354340122, 0.5515600142173512, 0.2554665241192045, 0.436529330325454, -1.8323231221928722, 0.27185314369137104, -1.2419243520057048, 0.6626839273461221, 0.4241971457561509, -0.9664665829056996, -0.6322748235711187, 1.8602393822717904, 1.1687059031660607, -0.5694462435129223, 0.6582789582790219, -1.1154249369639613, 0.055345246879158275, -0.5423104763481555, 0.3094195322406488, -0.2050799213227751, 1.108623608069889, -1.2379572852307494, 0.3764590794499311, -0.49788396887697683, 0.7451690523287039, 0.18208741180970311, 0.12190812731745393, 0.09803515405727867, -0.7012531016654379, -0.3610413825179147, 0.6128860266211155, -1.473970337167739, -1.0665746781417946, -0.31712108437806813, 0.13341994441439686, -0.5289314199526253, -0.5220259098879416, -0.3880441544360028, 0.26704090523081286, 0.14010204504595447, 0.5244111803006879, 0.2831101933244144, 0.37191455087331216, 1.2291801881501703, 0.7380360741744814, -0.5831523369543875, 2.9082049491811874, -1.2491934745983466, -0.20922060419418564, -1.0284002535028114, -2.535065223198614, -0.711665367587631, -1.019748588741473, 0.7404501830882152, -1.0675608931425602, -1.2295307958561752, 1.0233463119185744, 0.15895740557895266, 1.5301634397118846, -0.6164619156891699, -0.08191727109228059, 0.20395074680250905, -0.12989933828795075, 0.6678453844862017, 0.5959845527162771, -0.01160775097568491, 0.19080729538789432, -0.13793998890551765, 1.30879145407517, -0.6475922023190371, -1.0523989027736378, 0.45780159532146986, 0.814416328280355, -0.6468981842336837, 0.15108453740335123, 0.41941562731868226, -1.113844437778964, 1.7434370314864165, 1.411587890355621, -2.2100757963398174, 0.6785826326720806, 1.2376282210364538, -2.4238172555645017, 1.308955520300013, 1.2151989836111006, -0.20318289921720048, 0.566341318585707, 0.6288456458408845, 1.055388592673683, -0.332057657998266, -0.06927508610770103, 0.023075747786625703, 0.5649708474286492, 0.8972758323891803, 1.1608424708475933, 0.5905093964424725, -0.7511780266976611, -1.1023466501715005, 0.2944796129565862, -1.0454305511875115, -1.2604748228554639, 0.6119646190857047, 0.034725936624727935, -1.1754051081727683, 1.4310434000003127, 0.13529287432549708, -0.758890238431455, -0.06960910233381427, -1.0445759806656494, -0.7581631057840033, 1.399875887811757, 0.5305406467430991, 0.025505432927973415, -0.3961441732777157, -1.6957138869599582, 1.8726649889352198, -0.31968925597562, -0.8392531079300815, 0.6676728944099185, -1.4149034374294436, 0.4839350820349714, 0.6128592113805843, 0.1832861835985628, -0.27548981753338286, 0.7060652176784479, 0.3573641182947994, -1.4202942467890554, -0.3996877104930965, 2.531999445151432, -0.4259663654990927, 0.2811310701866471, -0.4852062805018618, -0.29220812032954074, -0.757171754093217, 0.6234092027095158, 0.9144803042430685, 0.8654013061535678, 1.0969368429673465, -1.1062842213155504, -0.3078648270922383, 1.6983086260755085, -1.5518499737974423, -1.5097947633025883, 0.640577452241664, -0.8521664872851524, 0.323778702518261, 0.15889495224969435, -0.11877686585750769, -0.04726662164003911, 0.07804122538165785, -1.1507340648714564, -1.8350076840240548, -0.8192271613156802, -0.06544538016757014, 0.7717319886766228, 1.0532384603738343, 0.01674032383409696, 0.34890004535254415, 0.06990772035492226, -1.2357473533806322, -0.2211531980551563, 0.2304539633602481, 0.8566404476607746, 0.3620642862776389, -0.46351614806514263, -0.7620287761161643, -1.8511005469778978, -0.3082457192131034, -1.5661413969310933, -0.96837296811826, -1.5226891312686321, -0.5041222700183654, -0.884922232551964, 1.5511189544252262, -0.7017639295260745, -0.7030077872392818, -0.13700265941368514, -1.7763765866143468, 0.25453462281988376, -0.8402130388974138, -0.11242046980765048, -0.5579377162967347, -1.8514382787168173, 0.2159777833056418, -1.2756870588998157, 0.14042389393770108, -2.358147507697247, 0.5046543975109854, 1.2828218029023417, -1.0078544532430402, -0.6870134597299327, -1.997723878535862, -0.9074708575174069, -0.921127490587091, 0.9589687242931217, 0.9231124724951824, 1.395650283734522, 0.9399996720816319, -1.499844600238462, 1.729267372933625, 0.34699901855565596, 0.07207509646442839, 0.22271784181562596, 0.9992096251263322, 0.1933323710207001, -0.9531353027908499, 1.0692684409087794, 0.8646546895318299, 1.289098204893531, -0.8868544996325839, 1.394788580853736, -1.2775923691404625, -1.5736954238263878, -1.5953978606192798, 0.8539199753251007, 0.15071236359813714, -1.7729631634664322, 1.23382792369206, 0.6337231111544592, 1.4334619123647463, -0.5077713539965876, 0.8740446111191752, 0.7156951358252265, 1.3638418317390568, 2.0254105579834176, 1.976871179736184, -0.09002838662978746]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_3\", \"values\": [-0.22024639929185427, -1.4918952663903668, 0.9878308057424059, -1.813921167610712, 1.658166088946056, 0.8570177451917304, -0.6260004780741274, 0.018984425683403163, 1.2028528418585067, 0.2332696567151749, -0.8767359878185754, -1.611257419504178, -0.7488932730354748, -0.5543823824329388, 0.5121760799466931, -2.2832116775669435, -0.39924307197766945, 1.1306766955901126, 0.8069377422432487, 0.36271342955297964, -0.9478348326974202, 1.2996518355685462, -1.0659018258612958, 1.1872770637705286, -0.8035626063578787, -0.1963443263016079, 0.4870365678989308, -0.6895191144615407, 0.38791490562091246, 2.3418746020062042, -0.19698189075447264, -0.6413389042385486, 1.178396847320693, 0.17041833683848961, -1.0595858176470059, 0.2048210234014743, -1.9273429605805077, 0.8951758482592354, -0.8162688912892955, -1.9899018968546023, -0.9022026334914363, -2.304744011191657, -1.0544745431749054, 0.37326950010256665, -0.12875784285292655, 0.4550342276092109, -0.10652979221150101, -0.9801150511752516, 0.635611390932507, 0.0010908012242574993, -1.1526008582554375, -1.2521839974475057, 0.9083815407092056, 0.17493631476593657, 0.5345123692863749, -2.0845402545510705, 0.8496181712684201, 1.1725755495875079, -0.3502411571844012, 1.1390806946072654, 1.5264886950773657, -0.7275666469296187, -0.06305695969484951, 1.016723373015884, 0.3419932745987005, -0.9720877616323178, -0.3115339988584141, -1.5997280862114667, 0.0007344908036274834, 0.1697657875027564, 0.477521570073144, -0.24656148802439307, -0.17137227009159997, 0.2627119885829448, -0.5104652021838633, -0.36394067644684547, 1.6704160145059337, 0.48192446576515807, 0.04973719441661711, -0.3503786054442626, -0.5772303515859648, 0.8590466610519136, -1.8208190687452466, -1.356715495020581, 1.524242722648754, 0.8984050907291462, -0.8100064564870971, -0.07602864068004403, -1.1263521691904983, -0.33235594420323245, -0.15044005798880428, 0.6504273396586323, 0.23151471647330313, 1.0543854816962517, 1.4770447831670228, 0.4617215370454296, -0.8578397664129521, 0.9341063409942899, 0.39236970774324315, 0.06517579191647987, 0.2903387627094595, -1.0030131701922147, -1.0224693525561854, -0.45592935061338413, 0.2469670862876973, -2.8277740048661824, -1.1647082944202924, 2.248480002681825, 0.7607286642899181, 0.207830338930941, -1.3620856879504295, 0.3634679060994074, -0.5866121843776141, -0.8632106891036178, -1.0962089040101546, 0.5966804504622727, 0.4781803556216183, -0.839219738144629, -0.14514003206037965, -0.7782162466219023, 2.452762011496709, 2.3561298061408604, 0.13936326278594455, 0.9472103607653172, -0.4755525891465071, 1.1559062782753071, -0.6141391490752025, -2.4535522918856754, -1.3752399068040615, -0.21325788889608063, 0.6392732975253154, 0.4135877823375202, 0.17469280609287144, 0.3820794511510177, -1.4684590926955519, 1.1273746185592388, 1.6671067173715832, -0.32367649868991133, 1.1279853436376488, -0.9904629973336817, -1.2130966669549914, -1.3325798586847257, -0.5529093076069076, 0.04407979287379582, -0.9356715373710227, 1.4051137729886902, -0.2824376082699389, 0.48087689164980957, 0.4793520089333375, -0.10250856214658435, 0.7772947928755654, 0.44719675857021673, -0.3128686317973263, 1.5573210902088213, -2.8146220065017418, -0.3803288697071819, -0.7482282273772639, -0.507698057197773, -0.5812459862804585, 0.8990308305122807, -0.7101306705804245, -0.8773866763835313, -0.5959870529923212, 0.641997925339113, 0.9823549182478046, -1.8429058083817533, 0.13901855273482236, -1.4108206892052066, 0.8079461076697779, 0.1705017788353538, 0.6364234501471228, -1.256873221406471, 0.023807594627611534, -1.077337489384918, -0.7852895371109115, 0.773414127706256, 0.2536400250048386, 0.44197746047685854, -0.45122627906757246, -0.22470009276144248, 0.7201509087529475, -0.6649259477157028, 0.05355082638291219, -1.2057639443350099, -1.0867119084829857, -0.6832102893120199, 0.1113879449618812, 0.5253831638943163, 0.4189986693794242, 0.051727442745091216, -0.10551511413706702, 0.11010860338222137, -0.628997959210674, 1.2175539165808202, 0.6658389959236576, 1.2575906295957184, -0.3121137549012978, 1.3408652998273347, -2.5360809657711947, -0.1657509500851253, -0.6457838486725008, 0.9503578311923736, 0.5693466326796551, -0.5793982105421157, -0.7374113120217736, -1.472914180615226, -0.505363627084501, 0.023806428715027014, -0.08190593063263094, 0.04430643186869879, 0.9912307725883677, -1.8359199833999194, 0.7792830545799907, 1.0040431044627027, -0.0456788197075498, 0.32636200327911113, -0.7979376836195603, -1.631249386742605, 0.1943915484470219, -0.26465621862720806, 0.8220254053417545, -0.028903634339251486, 0.5339212156378619, 0.059347310142101185, 1.1900472113335763, -0.714120704245517, 0.6183129549953589, 0.17011993427513905, -0.9755748171953716, -0.9277030229123822, 0.2178810116647022, -1.1522208114861334, -1.310513260167657, 0.3848497815161536, 1.1035049072675625, -1.1504993886702586, -0.10107853804585115, -1.7287158641807538, -0.011558579130493853, -1.3824597135391223, 0.8466480444161656, -0.029915008605672897, 1.6517760582290182, 0.25982324830472464, -0.2115883992829993, -0.274641339615375, 0.446248976866184, -1.4955645709399537, 1.700461283745726, -0.598696187394619, -1.0600517334415431, 0.07239671184088252, 0.05774679715048453, 0.9729258015140919, -1.2400912628086773, -1.0509715977146041, 0.9165091170143842, -1.6361802420742713, -2.63286594068759, -1.1512366626808814, -0.6616193709096733, 0.7156145633434968, -1.1477560078116384, -0.42725088764955677, -0.33830621428880914, 0.5671346582835024, -1.1312882874484198, 0.7950788273468178, -0.07905143666819349, -0.032510166499158104, -0.5989185444185371, -1.5518988877800912, 0.4179028293328511, -0.9173198867144611, 2.159348871458983, 1.249987297819348, -0.8284097263333697, 1.3333571714549683, 0.1125860133909631, 0.2911031287774633, 1.237189607913067, 0.6377995687181957, 0.570945722559932, -0.9060091465504148, -0.7626928946522199, 0.06520871325973303, -1.4112358671589693, 1.6581025550797635, 0.8853962749787869, -0.00669562376321453, -0.056248990286046574, 0.7098455662041575, -1.1444135945710774, 1.3503049282397859, -1.5306449360854237, 0.5380566486400263, -0.04539730395015433, 1.6771583587191272, 0.7157688978528237, -2.4041962523237808, 1.0294222905030481, 0.5251537650587658, -0.6532737861922754, 0.3740581035083793, 0.18958297868037216, 0.9468468933713353, -0.6008935904607843, -1.4398723476180175, -1.1306033039379564, -0.1937192525770669, -0.6847567187434135, 0.35181289980618974, 0.40558131130464964, 0.9072578587541134, 0.7575107031667526, 1.4684338014880145, -1.3118359741679604, 0.5100220415681841, -1.491844221938728, 0.17756141601399142, -0.20219396887453195, -0.6541038625763254, 0.8374917624815378, -0.07242016487910022, -0.2908325373326312, -0.7629930700762173, 0.16602270698612728, -0.05908732597311025, -1.3659650559591814, 1.1562295493463977, 0.6147577827472298, -0.15940434208902834, -2.5985141369623053, -0.879290477373588, -0.047607353019851716, -1.608546717380582, 1.923663832303544, -0.9980310500493049, 0.3108864629986841, 1.6304090296710287, 0.18791495855211673, -0.19995870460259954, 0.6972898065373958, 2.0301267012923097, -0.9574086702093059, -0.043926116284038405, -0.3075272681986411, -0.27335663369712515, -0.3379241223329465, 1.5024729835156228, -1.3808862114711369, 1.1319977479362746, -1.8157729907711955, 1.2702235505507136, 0.2998354453309981, 0.04395402312252539, 0.1338967081076286, -0.5408831890637802, -0.04144403189592097, 0.01652515979046742, -1.1530112371215309, 0.785604556697681, -0.8217205558898396, -1.0169385931331039, -1.4505165939690547, 0.017241180502406018, 0.49137670625468405, -0.9152420850969808, 0.8084988202056739, 0.6966802660832081, 1.3729926660025067, -0.35996018101414395, 1.829433537535339, -0.13793239839147228, -0.09313613502848059, 1.0158592136106015, -0.015904013101049157, -0.1346564997130015, 0.5431902668407428, -1.4792060605602948, 0.4501520516786402, 0.5680684898571781, 1.945613957377789, -0.9581872473653231, -1.8037893708463237, 2.095233409751916, -1.7308742179825551, 1.2995287224508927, -1.5448803528673725, -0.4904638222029328, 1.5841149359917241, -1.3350490173356953, -0.4470022337400931, 0.8425118086074309, 1.2887463130081096, 0.3134447763455847, -1.438077624762457, -1.8318855527644486, -0.46194305170619315, 0.3393780898832114, 0.7834821257367921, 0.431092182667842, 0.30506671626316273, -0.1715568833176652, 1.015603199707661, 0.3796925910506984, -0.45275269418205116, 0.6108563867451814, -0.929716356898734, -0.0301614353761789, -0.08178870967420422, 0.06902020304482823, 0.1710416415693631, -0.31370182831979654, -0.28277020951380244, 0.14549484496783696, 1.9848517882993206, -0.8910914473461993, 0.0902276771481494, 0.19708528492468103, 1.2881215021567987, -0.2724679042570859, -0.48349837902379694, 0.22493281453451247, -0.6648503201857656, 0.3417872577486525, -0.5594730328608029, -1.08541030913812, -1.4312186112531686, -0.7736985103447731, 0.05392249975721667, 0.4799978547772566, 0.00264979548445373, 0.4296611624980698, 0.2434414838258613, 0.19455832248059726, -0.788812717302849, -1.156413979256683, 0.19221708879453697, -1.0814755540923757, 3.174868160793498, -1.5745946622487337, -0.26243882619527686, 0.6499510967539964, -0.635990006275126, 1.4952557513420173, 1.5345447214424852, 1.1379083907810745, 0.2847825046823613, 1.397016559220843, 0.7489537141089658, -0.7010015830092661, -1.706851336689104, -1.6926061122541376, 0.799673059160123, -0.8219674743374177, 1.3365797682782474, 0.14057308343827732, -1.283770030248247, -0.8565056088859233, 0.3823693171290185, 0.2735507810013875, 1.0176499116562578, -1.0598547454030516, -0.46348046200002635, -1.556306703549009, -0.36400540939256926, -0.36426583016691727, -0.5295652728605427, 1.0790628222799448, -1.2200376068593866, -0.4003343228364468, -0.65264210942574, 2.3779546886895964, 0.980757933651035, 1.285949458631973, -1.6910724235966472, 0.14674911228071172, -1.2829542478631035, 0.5974279055284316, -0.20316747150290063, 0.2961049935325496, 0.23365657842602205, 0.16150377267447452, -0.9146098659138937, 0.15316361573610404, 0.13393378926689514, 0.531486638141917, -0.07591330322028705, -0.2093134182116938, 1.6795834268860121, 0.5769809383905733, -0.3454863135563012, 1.3754301245998073, -0.2390348744319479, -0.1679473041681215, 0.6267324276995532, -0.3655632369475139, -0.378690087360126, 0.21092518280332764, 0.6781717527179216, -0.6323278799414818, -0.7574794064767401, -0.6284257506855812, 1.1692944044189533, 0.2553292280402236, 0.18032161490857956, 0.03379807642382812, 0.734417777678716, -0.3123112657292173, 1.0731942359968853, 1.566402921091292, -0.3308066709333618, 0.010236531796521292, -1.15247087262288, 0.2442491280878396, -0.8366343249271834, -0.9158526365270848, -1.6748889878534934, 0.16207124537657466, -0.6674136016234541, 0.5994320355617859, -1.2686119929374393, -1.1680937464447485, -0.4679576807128459, 1.130600895581808, 0.2682391165145598, 0.7457047506027543, 0.4398608550383364, 0.7167932636931053, -0.7880065664331348, -1.5453177040872588, 1.0613133816686682, 2.121031552728072, -0.6397878618038451, -0.19218133673394736, -0.7008459564863166, 0.7478009042587136, 1.204156593078261, 2.2550707123853715, 0.6544158939290624, 0.730588214203812, -0.7129096288975506, 1.3588574056494795, -0.8270383638888996, -0.3323619457315265, -0.16232448948889272, -1.1156929013662258, -2.312364973051515, -0.7673954613594378, -0.5382698569315246, -2.0901032985775894, -0.38508475575071477, 1.139807486230736, -1.3866652808412232, 0.8620367627366949, 1.2471780848916545, -0.22876986732782872, -0.3683790523891058, -0.12929106059594794, 1.241885730161529, -0.34348847899726254, -1.0872028642318063, 0.9737804132338589, 0.9317701688850624, 0.3368197057456087, -1.7228208590426932, -0.17446616332160633, -0.37808910230658277, -1.0693802340001919, 1.4249206427161538, -1.993000488662109, 0.4626838205855712, 1.544760222214423, 0.1159314731469435, -0.785175539941871, 0.7024647730924277, -1.4030190576065122, -0.19598098481506238, -0.4137898440785423, -1.4965514544709695, -0.895916836262077, -1.1775620264630025, 0.6934645969948395, -1.9995594238863192, -1.0711178255004499, 0.4405682155041681, -0.0936523223033323, 0.5776223855224164, -1.936235311557643, -2.352428150999982, 0.7239867463789513, -0.3855485499704033, 0.15535825900786385, 0.17225402737874687, -0.12133596385708081, 0.4654718780312889, -2.2245892316508877, -0.3142407405108943, 0.4398509693549905, -0.7321684510399215, 2.833387503142171, -0.9960031137201812, -1.1371706587788786, 1.1839589295606738, 0.02412082089089266, 1.1992969359621748, -2.7398800356194126, -0.40529611080677014, -0.15774016325955761, -1.0897932704130027, -1.383897064450036, 0.5072944719310469, -0.36279025499318457, 0.9867983012576942, 0.7883362570257818, -1.1745620401555026, -0.03499437721265217, -1.0548922309613002, -0.3719194929584993, -1.0391006882996012, -1.881545484267926, -0.2153359305601845, 0.39215370046591624, -0.4102727672976894, -0.48632401457005875, -0.04459245759658139, 1.2618565510309177, 0.3258837975148247, -0.47905753335687845, 0.3122544718097916, -0.5803468467160197, 0.9312190583871686, -1.1756902565935274, 1.4046535617185847, -0.7498942751793023, 0.7311419247885944, -1.1871273897719727, -1.3858536178628478, -1.33393138981866, 0.7934365175206092, 0.1905394776668635, -0.053644171103339515, -1.0907693125470186, -1.4477810064027485, -1.4759859038202068, -1.3121800675321587, -0.6708740395798345, -0.8667343117874567, -0.08088848243601836, 0.7124070900499886, -0.8341732158025023, 0.368838080043975, 0.2266595878192985, 0.06619930976795232, -0.5719867896791677, 1.0087502847759162, -0.756247771319653, -0.2833627431359613, 0.2954273422695442, 3.126941430667481, 2.0143846416248867, -0.663006750108683, 0.9084096034626973, 1.3712130452687643, 0.9481721358100763, -0.599151668793219, 0.3028946859135555, -0.7828853403155736, 0.6005632000878697, -0.07129190885081012, 0.6816388317491738, -0.04917480549047291, -1.0026551699177906, -2.517037502159392, 0.6640483770149698, 1.4886889094931526, -0.47170101362764166, 0.007417395950271136, 2.4146558773439044, 0.7228188671721607, -0.1652488942284624, -1.3737728497869508, 1.01023975726921, 0.0007582301505722187, -2.187398905400651, -1.780128923065242, 0.2613609653071365, -1.0475759320222904, -1.1259090630484323, 0.05329996463971003, -1.21341521794978, -0.02299701883839612, -0.474222736530767, -0.5818786642039041, -0.9285945316786712, 0.16795224572233844, 0.5823013478637544, -0.12967390514784982, -0.8392633801792538, -0.5092697569868562, -0.8066828856375373, -0.7320809562285727, 0.7831216147597949, 0.25367285683117324, -0.809034646072656, -0.8080125103505426, -0.25021112064693884, 2.222514867646007, 0.38903076216531673, -0.9635746039975125, -1.3682546535400435, -0.8999460721016104, -0.9183123308755886, -0.8766719703144112, 0.6493594561419185, -1.4988924222616538, -0.5364598412731566, -0.21445424278809544, -0.39602142301088067, -2.0946359771957166, -1.0503273623817848, 1.5387618923333064, 1.0871549995222685, -0.3349621725740059, -0.4310209012386146, 1.6238159187134007, 0.5058458655167707, 1.088044059018638, 0.032657750452832264, 1.6340809579379507, -0.5251228443393615, 0.1470723944868154, -1.8619725630941595, -0.035400752198225235, 1.3284241906397196, 0.6545844121728638, -1.744460350183335, 0.4618586106223179, 0.8074960211927651, -0.7981725449078758, -0.7237196636570621, 0.5112329813556195, -0.3168695127684098, 0.11425904535658378, 2.1371766091262985, 1.6312484291995728, -0.22900756516153906, -1.7288576840186698, -1.9691001057757702, -0.44012999656765034, 1.011762009354796, 1.2369121788443724, 0.5363261688301691, 0.20511534570665477, 1.456625246574253, -0.10659476331786474, -0.7346861707080926, 0.029177177354401788, -1.8010394535722074, 0.5052723728483611, 0.7517122679067594, 1.1684256547330598, 0.4260979368925467, -0.8037636757689143, 0.8656779756003056, 1.2496599172543381, -0.7133878575507006, -0.2881013685704896, 0.5334307057782895, -1.0381968070234124, -1.5439763022748565, 1.2786171716757995, 0.19389914472144706, 0.23941920727674473, 0.5005670464905299, -0.5798349422053793, 0.589047813775415, 0.17755822864147075, 1.4671930307608496, 0.4536506640100153, -0.024986644566725457, 0.8900796691759485, -1.8147362469021255, -1.905994313231718, 0.10305153183647886, 1.3635155738391278, -0.4745165530451798, 0.9060764751624649, 0.7528122721270142, -1.4837947054699054, -0.8118491200306872, 1.1769454873609149, 1.1830242093384646, 0.5279046177903368, -1.1522834380178246, -1.107481298273916, 0.767954934781608, 0.18823615829965648, -1.5548521241620847, -0.3267350763594621, -0.5548025315293302, -1.5018038546993737, -2.101050264627909, 0.43332500669323215, 1.5546305667975298, -0.17392117536505533, -0.3997632151318644, -1.0689440601536435, 0.2197560846529269, -1.4377502642393751, 1.5361169184072279, -1.2032285538687646, -1.2599354277379193, -0.5778698137956614, -0.09742127581686111, -0.4910308355431001, 0.16851130253720864, -0.4212517303523557, -2.179751426958555, 1.2091784797114609, -1.382183308534005, -0.45952038095571385, 1.1015094336621454, 0.8717470487014694, -0.26240805399899486, 0.09363581432779622, 1.112290928249892, 0.07207312475134545, 0.2697000429704919, -1.1578472899558971, 0.651583153154857, -1.7149342261642, 0.1944955419138461, 0.39435119438557376, 0.6272311906481702, -1.6769979081131687, 1.4170787621835632, -1.5265819850173326, 0.1447304591651978, 0.8723217831585764, -0.952957968383839, -3.0338168808627306, -0.20451840204146238, 0.08149671517402063, -0.9637643569697443, -0.09946010134245639, 0.35177930961025433, -0.06921720986679322, 0.1405857312718446, -0.418811414200994, 1.5528245722051597, -0.4956849720778875, 1.5557626542089644, 0.2227905672819174, -2.1847652560491038, -0.41403857667617944, -0.18259481743769454, 1.247840566207773, -0.21336556520072855, 0.005231004993250117, 0.939482559195572, 0.221325857484933, -0.8805581297323251, 0.07612814674504226, -0.6500664007861385, 0.49136350166044607, -1.390329964463025, 0.23878196853192007, -1.0562818225654047, 0.7085870713446663, 1.68157073490248, 0.6218986901698047, 1.7043955893300562, -0.505940853944844, -1.5618034423638119, 0.7647481377166145, -1.3868196467024891, 0.4643654147040007, 0.905513744058563, 0.09970523813075145, -0.5411857775540572, 1.248281613225442, -1.3106582461945087, -1.9000217733799434, 0.48397163478304117, -0.5455049368503438, 0.6718595463393972, -0.17875499068864498, -0.7400203584825839, -1.6765751218523162, 1.2596757450663758, -1.2799719649612744, -0.5294527000799745, -0.3257445373728054, -0.1802040177435554, -0.025037636852866918, -1.4093625605931626, -0.4139448945628461, -0.7579364785207617, -0.8884272100374703, -0.3615461777692823, -1.9173143188295283, 0.521260077692643, -2.4674900756172224, 0.14576826498119066, -1.0612544493419223, 0.7605040795732861, 0.21822900898967224, 0.14079086839934124, -1.4952074325083378, 0.08973466376868608, -0.09423958412690409, -1.2009906298151323, 0.5887519305111409, -1.3038022975562884, 1.4907570921468183, -0.12885716078235623, -1.315712084214117, -0.47082191965837733, 0.1901302034593887, -0.14353199149550072, 1.1224792895246432, -0.07519888839312512, 1.0153203514933622, 0.39924662304475833, 0.23709399878844054, 0.7513793552477469, 0.3989877247382115, -0.6021769406358826, -1.48755065746577, 0.5940722794071197, -0.769078990833866, 2.0517394642235063, -0.5419550164308757, 0.4198445383800783, 1.521674971008661, -0.5891073312556039, -1.1771796847528544, 0.5603125301673758, -0.6514223658325218, -1.8790055196327677, -0.8579568540967585, 0.29979608187186163, 0.26203514779385684, -0.47353261653481216, -0.08918222949816193, -1.3296854545601284, 0.19617406513671556, -0.5694193932210667, -1.6202643329983153, 0.21885188446969425, -0.6686200249546627, 2.358740165943529, 0.79115671095872, 1.763063759536879, -1.1779788594888976, -0.2857019141369181, 1.757158417784073, -1.1437719782996425, 0.3141363135099526, -2.667928034243558, -0.557744328283728, -0.5862701706828731, -0.7579733554538707, -1.079051492036731, 1.2218599310463132, -0.9532691917350395, -1.0988798889536364, 1.682858905064868, 0.9420147335887848, -0.24556669410062226, 0.8337332347274421, 0.5952409917583423, -0.81707993336399, 1.3452358992400322, 1.2782095465386267, 0.04802503594944539, -0.3045079710211651, -0.6864146602964447, 0.42897742631851904, 1.0576694477550155, -1.133048515942093, -2.0655232224367035, -0.8101096369882749, 0.3257245927064561, 0.22930882036557335, -0.3725526823378632, 1.7288624966869806, -1.1469440037736416, -0.4842239874993984, -0.6585198613299207, -0.39934850135452177, -0.05298017457982023, -0.5404095632830945, 0.3338697828425435, -1.0332296077354397, -2.3087891253611286, -0.6506354985274878, 0.40034431940713905]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_4\", \"values\": [0.5251634452173894, 1.1311586431007488, 0.8700891527825754, -0.2719336397297926, -0.865853663727414, -0.7019085970404236, -0.05137150362834931, -1.399072623275607, -0.10260097438960152, -0.8760426260206007, -0.8013585346344642, 0.053460355705048535, 1.7908969808766628, -1.069021404034664, 0.019740778238531733, -0.43886320175495824, 0.9339416506450433, -0.6648211960278853, -1.2888688140006912, 0.036379531633380674, 1.7197128016397256, 0.12669216932887653, 0.7731614269495771, -2.1124470684696073, 1.9127941569095317, 2.2679423064732998, 0.7949410238485205, 1.1181697394049823, -0.9626118980423601, -2.318862487340238, -1.6300650217780281, -0.21889147584030857, -0.5229134696280958, 1.7300224839347833, 0.05850455751888935, 1.445759342409445, -0.40243136177235206, 0.6124445101693886, 1.4535893560546296, -0.940863566317404, 1.7385539599758122, 0.09649404451703451, 0.6892491876183051, -0.3161294485016718, 1.0133553877167802, 0.7001670175747857, -0.7847460318161508, 0.6128379033059097, 0.1700975611167422, 0.49927058995919704, 1.6153438323313678, 0.8288112270908742, -0.5120319928851874, 0.4227241611754416, -0.38771570036953157, -0.18972556092007345, 0.394205150571288, -0.2807511329334027, 0.1858472245049266, -1.9735114719674558, -0.2710664540739768, -0.02393514271487567, -0.37223661812663017, -1.544643097293786, 0.6965987544231885, 0.9550303618381244, -0.744581448683702, -0.2763925588195948, -0.9718506916356157, 0.44521955956937104, 1.2684936030394454, 1.025461309239509, 0.8137047168173358, 0.3601637416464089, -0.1426887979269303, -0.08046507092908022, 1.5551140873254081, -0.8414812903965034, 0.2187933664158605, -1.1678384759185267, -1.2438393053307362, -0.8947519937787768, -0.03745149875191792, 1.513709622163943, -1.0435464877739562, 3.6843283589365314, 1.037872910665845, 1.1496013790016684, 2.4521911760048942, 0.2850876672514136, 0.671405056818367, 1.887238803820528, -2.4418307264369563, -1.670174421609876, 2.414383112527767, 1.1304780728706811, -0.4372164448862596, -0.2724619164590139, -0.3218210984344437, 1.9544382784994103, 0.34313465350997335, 3.008053640116054, 0.5608153801041252, 0.9138462115091344, -0.7950516246095837, -0.5882650314392842, 0.16900362740100008, -0.7296254967622678, 0.3836998507106191, -1.5812448582654095, 0.4413771725195416, -0.376647102968396, -1.1670315640724664, -0.7163935430813939, -2.6109530048774965, 1.0846462732087703, -0.2936099510914616, 0.9848509887799666, 0.05633555824233429, 0.6887806037188837, -0.26953525087005625, -1.0943807100034169, 2.1488726722047686, -0.9111300168031106, 0.4115448629203719, 1.202508499342797, 0.5655314467136272, -1.6973270046640587, 0.18973277397525506, -1.1055349027810473, 0.16626587255166034, 0.2001552826667971, 1.3459899945738605, 0.4213438351520465, 0.6330992956124635, 0.5472126857467223, -0.40105470714225533, 0.7758511049637491, -0.5114376221209904, -0.10032006471546288, -0.517420664810811, -0.3265351707368341, 0.04311965247606891, -0.07447798024922209, -0.8304781462353996, -0.0727716814630075, -0.7253332142416723, 1.2716223482225044, -0.7923992505268658, -0.4381504105694556, 0.1338800848975359, -1.2674681766255957, -0.12808365888617454, 0.30567926275566454, -0.8854939847981672, -0.7349787653568222, -1.4222216827032248, 2.053322214309601, -0.5270907366210245, -1.2814927770999398, 1.2143436336787894, -0.16549115976095516, -0.3791170057368066, 0.5610192344734551, -1.2672784214256392, -2.2425486382640494, -0.6786579017001503, 0.6889945014348827, 1.0330191430935134, 1.6741071998959929, 1.954723960960713, 1.3176681836260415, -0.47547893103683075, -0.02217647738853815, 0.08575704353206241, 0.688806628870019, 1.031159146628588, -1.0953287812637702, 0.36140147223193836, -0.6908650063796186, 1.3827428199372414, 0.7695560224273972, 0.24744152190456387, -0.7326105232912511, 0.20419989786650025, 0.13821129351126835, 0.44851824318657324, 1.0448962127892567, -1.4408352451645492, 0.478509676445545, -0.33758010486905865, 1.1669068320594027, -0.2003916303946032, -0.4141243147819927, -2.637020193400584, 0.17049431101387094, -0.27163846730595603, -0.5051652622025624, -0.6020568850643516, -0.13952849459779737, 0.5829661893060205, -0.8067602311183131, -0.12296572470732547, -1.4420357304198705, -1.0570509723727994, 0.08241745507144953, -0.7751841252749562, 1.412356439783182, 0.9170752895414845, -0.7678390997134629, -1.2425393131252247, 0.4795658870541807, 1.0841638327271061, 0.6632581634696813, -1.356670629066757, 0.2974641310812042, 1.6144336103533956, -0.43064917876659886, -0.32049551238908036, -0.5287127208532888, 1.3648074709608395, -0.5615519977027977, -1.653994968174277, -0.005103152156101103, 1.024598284299109, 1.1031231779933481, -0.4071702543434829, 0.1230926932694193, -0.024108531087536328, -0.5839514963377215, 0.46540173439771815, -0.07204795714812331, -1.4132568231684106, 0.41071588398604425, -1.2847026578660545, 0.504335019705242, 1.5218858942420472, -1.3304915877461758, -0.4585691290719639, -1.0313753974938882, 0.8351566877467527, -0.7822459701210543, -2.072914982367598, -2.0445729141852538, -0.7170724862394747, -0.4180670907352223, -0.03129127556800675, -0.004557997677805545, -1.4370559033159502, 0.182114893174434, -1.263636312617074, 0.9070904015395238, -1.21020408449374, -0.21093012606134987, 1.1011225048101474, 0.74784917842872, 0.08385938534691888, -0.1409089764035309, 1.2560660947581521, 1.0806535504037997, 1.1613093943454893, 0.8155951201858668, 0.12791500455132604, -1.2568521165021194, 1.1489982692365388, 0.15118379367139112, -0.35867397050394173, 0.5432590055869079, 1.1880350178966923, -2.3599206600171, -0.956281283805558, -0.13124515219139005, 0.38735091872264366, 1.1352242491700748, 1.193681106561488, -0.795968605365584, 1.3435247773135932, 0.921905887038386, 1.3634469649131344, -0.511607143599176, -0.042403040172659015, -1.0075465851325667, -0.9771804873168863, 0.9939761765571142, 0.21638326523029705, -0.059131403568775734, 0.000926170925149533, 0.6588929131822683, 1.4997872208493623, -1.1749148330523902, 1.01315531645817, 0.3196583498623188, -0.32737917914138587, -0.12385018560104717, -0.12624546931946903, -0.29723485785988923, -0.5200310238736798, 0.016141177179150284, 0.20336741609876852, -0.5656149095421911, 0.2358907430429816, 0.004664163091875824, 1.251175703335836, 0.04518370025676094, 0.17592274829067345, 0.12834098729828924, 0.43963878644908244, -1.9939080923635883, -1.8917896262389924, 0.3551807971567707, 0.3163887388554798, -0.34212841550890677, -1.2304634256448956, -0.6749691237619366, -0.11758923595459078, 0.675951017201637, 0.6804503037119549, 1.7266206850184609, -0.19223401099853704, -0.021963495234484272, 0.6085215195580644, -0.49425977928769826, -0.4566093041255104, -1.1580035758392495, -1.0370777024207276, -1.828003644026463, 0.6946837185227442, 0.30855063224775103, 0.6718161633669889, -0.2989148676354876, 1.598966847881255, -1.3057688249408512, -0.6824986543247984, -1.1145878235053361, -2.1657633008741874, -0.2951948496722867, -0.61288769022845, -0.1844544118672392, 0.27406587239128793, -0.35360841703842716, -0.3616169569134577, -0.32417419739637304, 0.7048168539682759, 0.9232026743939383, -0.2769163531265431, -1.7370037710040591, -0.2399621515659119, -0.10605811188374038, 0.5674139463869946, -1.4865116863561818, 0.6812448632239314, -0.6533952929396026, -0.543551882900858, 1.2674474409079153, -0.5094811635708195, -1.365869068235831, -0.4261319949242066, 0.2009581283640776, 0.07679399133147856, 1.3561983306672607, -0.6007870978878385, 0.42875664817841025, -0.3469588619423755, 0.7808987317733305, -0.1433356086992399, 0.2492329933834977, -0.1006143479829389, -0.4487339383173955, -0.4700275858131032, -0.19012550690429253, -0.4193185368678191, -0.09427557229777123, -1.5799169284270818, 0.5335792961893397, -0.44495136236638105, -0.8351604763003111, -1.011369042762519, -1.652414139305075, 1.1955965266331627, 0.24520647742119597, -0.2586656380372263, 0.967229932418636, 1.3427801468626523, 0.5247508939186483, 0.3957412012319854, 0.8628413272396105, 0.5563498525288044, 0.7617275977165164, -1.6419663390743962, -1.4490613340238971, -0.677554905514263, 0.3504415504190764, 0.9447353772953844, 1.139926549107997, 1.7272283045460708, -1.9458784919413212, 1.4924795491962568, -1.3972846327717248, 1.1909497883745872, 0.2403552186328248, -0.9838047888502879, -0.6258777352121977, -0.6769880817024495, 0.26039352690925194, 0.2718613286572917, -0.16579343195748913, 0.13550855587693195, -1.1401632909795945, -0.8720450720245699, 0.07090065873664789, -0.6537691567566878, 0.13117062431493634, -0.5000238242122758, -0.08955972880614096, 0.9321064053315266, 0.8659290868356749, 0.3161178326077239, 0.7372522220710387, -1.2225959361857972, 0.1267002858710805, -0.8509802924313805, -1.6827346548811597, -0.32544553792387576, 1.1408915293658082, -0.2497553551971055, -0.4268741118688973, 1.0952815521624142, 0.9135260327099007, 0.08001104420207153, -1.102959331729595, 1.0897820366391784, -0.28697358778292514, -1.297712927445393, 0.9868988391527295, -0.41089173853599015, 0.20285958072417934, -0.6349544173971586, -0.869166061040075, -0.5629479246405767, 0.6083910057082152, -2.382586071123851, -2.1309791015790824, -0.3172098290104709, 1.2484370698471168, 1.1505101757454095, -0.5159349671116554, 1.017198520495138, 2.2298903895380144, -0.41684609021627106, -1.0848238993734483, 0.19449205666843247, -0.2842943590362249, 0.4500771986552887, 0.6107587862438988, -1.5710929564507876, -0.26061986512566193, 0.12500742073488968, -0.2654462190013811, -1.2093906616508565, 1.0762112172904927, 0.3742543784917451, 0.8017072415850858, -0.22679716281116294, -0.3300018730696283, -1.3796237857614788, -1.2536097445310805, 1.5245133134313154, 2.4144804875330186, -0.760735889016531, -1.6214000174363634, -0.5294790716123322, -0.010939214875274154, 1.1030739545960586, -2.5912975644057488, -0.7772098099709956, 0.3946569078480432, -2.1830870181777184, -0.04518128321345534, 0.4783984205940119, 0.596483354089415, 0.04662956588897037, -0.49087330878651947, -0.1261085041527694, 0.12405025720822023, -0.5735454571884493, 0.505948322862059, -1.535215361199867, 1.5211809243975378, 0.13156139914490342, 0.7550044467815801, -0.8298566271375318, -0.5142109733825033, -0.053427329071659244, -0.6095099809158248, -1.7412476452726289, 1.1696625620065544, 0.41918255092277673, 1.7023504386044324, -0.289052550291549, 0.1949054048605638, 0.33806409561728884, -0.08057782719184634, 0.5415970918899978, -0.9150632216781343, -0.08541508454693743, -0.384497704986853, 0.11494455896487886, -0.24451121379903692, -0.7106005371216667, 0.34047042969611035, 0.7800743537995449, 0.33999856320262356, -0.22050332458893646, 0.3972621626622249, -0.8514103573725487, 1.4528817822351698, -1.1115388969945297, -0.8842162732297786, -0.859099426070421, -0.40977721897572356, 0.4874182634877542, -0.3836312206374482, 1.564577334815889, -0.46412921166367094, -0.36343447161720177, -0.04017794584197296, 0.06911206059757934, -1.608925198688848, -1.382762133683225, 0.33225280730618234, -2.051482367213881, 1.030572203167779, 0.16673774323608512, 0.7610677543514919, -0.8254777632122036, 0.8028658747383061, 1.819142777070128, 0.7382463851630531, 0.8397022996575698, 0.6710282273616307, -0.06563653754512881, 0.019069954178299698, -0.0672341160416224, 1.6783578759190303, -0.41977947267463633, -1.8790023805056277, 0.9337174264180803, 0.011355697654857845, 0.5359425788646304, 0.5077516213522837, -1.1848569345412685, -0.9224668673950237, -0.5353185655671386, -0.37807087141783174, -0.5095731804774531, 0.20598359550666717, 1.2026521013413827, -1.1122382436063045, -0.9398233408550282, 0.370129618566394, 0.7956688094466534, -1.8410930975644293, -1.3352730597689821, 0.5695457004741373, -0.4896066199820097, 0.6179487743588867, 0.2672819679408328, 0.14484911631305214, 0.8108848226574222, 0.9054665225627649, -0.5598298695468605, 0.21542328583480988, 0.47768431538175, 1.3802136375480594, -1.7387168983084738, 0.8479143805622086, -1.5394602991514028, -1.2217749765666872, 0.3543881467127808, 0.5856775664976096, -0.6917585182728168, -0.8720990339242709, 1.2007544084003472, -1.9641108523387039, 0.9253891916559864, 0.491838865712265, 0.8416729404816038, 0.6581984511757626, 1.3367664210783683, 0.12423059039901635, -0.43925594833336995, 0.12143320771868248, -0.15756458413635716, 0.022166548171277722, 0.9322431204017664, 0.413958552587274, 0.5182718425567002, 0.690836590452382, -0.9007916100331826, 0.7820285020765017, -1.8630167366394534, 0.8159838125586452, 1.3565841870586348, -0.15311246009993856, 1.102623298155327, -1.0452431380502825, 0.7776787689222421, -0.28781325060361124, 0.1280971972674154, -0.6593899360352911, 1.735420708424171, -0.5269298951839422, -1.7147514039203575, 0.7858911673035388, 0.8592573401670827, -0.0038765813071822623, 1.3212117904244536, -0.6563631071742865, -0.39007644845690737, -0.06392092699176534, 2.432426204485156, -0.7136665255980351, -2.82861584116314, -1.096609497278106, -1.0085733373824406, -1.850171300438772, -0.7681750349288968, -0.7274555245060309, -0.2710487322844907, 1.0665703747997235, -0.7623409672789649, 1.2336441685881607, 1.1629250150546713, -2.0282403330018965, 0.008832841576451088, 0.6614750403069656, 1.225793762900914, 1.0945434768171973, 0.5870370419149318, 1.297450716264058, -0.20508485264148402, 0.35925175280487787, -2.1952831446736023, 0.11352830242229393, -0.28219144961671605, 1.4095683059359354, -0.470727617331313, -1.8644574510591707, -0.10440332229838792, 0.6957305269366311, 0.8581875623654474, -1.1273517458046018, -2.587618120992798, 0.0930472908868875, -0.4660905410001091, 0.2899071895606827, 2.7423496118611137, 0.872188783048729, 0.12338928582525303, -0.03463442814101772, 0.13557090204915562, -0.2636941435187628, 0.9655607728375336, 0.5078385069558453, -0.5698382210164681, 0.2456661869113765, 1.642908734949141, -1.2239094169416513, 0.50578633140902, 0.3635567884544503, -0.6557812631731674, -1.4175045605338736, 0.39745249896913704, 0.348509253741303, -0.6992259168083343, 0.38783882399048475, 0.476294028170859, 0.3142668330798542, -0.041411143690182076, -1.2795878493203472, -1.1750278397599832, -0.07567422005950393, 0.0012249418974509129, -0.0880617941867926, -1.7905784455495939, 0.3837597614188023, 0.8320230883006952, -0.438335680454986, 0.3802363713713724, -0.4405749662244828, -2.1943709722613205, 0.7281986759057095, -0.581446615461807, -1.9619363854150595, -0.8071538949735818, -1.789312056952616, -0.4556898878205141, 0.5045702900501181, 0.05465886455076759, 0.05874282467797477, 0.5291927370908522, -1.1208314735599605, -0.34777518764580573, -0.6842834675363938, 0.01322964622366632, -1.0505611344252095, -1.5159191864236337, 0.5730317613889977, -0.8900769281134356, 0.3182172290006318, 0.1728594467139088, 0.2685656799331641, -1.7688397021461117, 0.9934957360168243, 1.9829452150768894, 0.20215016648107578, -0.9475856198019994, 1.2155754755318011, 0.5484743103568034, -1.2086602684629892, 1.0522800321489805, -0.49691807678570793, -0.2532763706695487, -0.25142729639443745, 0.9667309674317927, 1.356857692590226, 0.5938121949366121, -0.45129723043792863, -0.34737994522108206, 0.5428996011914441, 0.7994806848610932, 1.4864816694705316, -0.4078463242902505, -0.38751777230310314, 0.2558290090910013, 0.07045440403760318, -1.1272542927219156, 1.5342131101973062, -1.4803422087836622, -0.03490201579606947, 0.1529059295658842, -0.004421885617863384, -1.1169314887778157, 0.8587667458683731, 1.0793967002617928, -1.9109886539009988, 0.8575776344997118, -0.25986531397915347, -0.509245012964666, 1.3670126655233057, 1.370846169261575, 1.4959055728850956, 0.5453223291062224, 0.25865446564622807, 0.45177555453489093, -2.4364544367710557, -0.028924823836332787, 0.4095914131020384, -0.6444541564483633, 1.8286907119816036, -0.8823208405154794, -0.9665713424865571, 2.4311329191758095, 1.0859248973654696, 0.9008580781184193, 0.45329005126503996, -1.841775836045861, 1.428204806031039, -0.408580164304097, 0.12269737771186784, 0.006564991949913699, -0.5653072385210126, -1.8891017433449653, -1.3027602293127012, 1.0021362531028224, -0.7616545604053291, -1.0320685439791286, -0.7737565219213713, -0.142389006958578, 0.5174044119742057, -1.799910897289248, -0.9424234545141608, 0.6516832278888003, 0.1737290845041266, -0.34062956141084744, -0.26075070043315735, -0.5092439115879532, -0.30681338221973486, -0.006354369478160115, -1.1299242591153904, 0.038879784698736514, -2.848870080326319, -1.6614102709182035, 0.4943964347111068, -0.017616792900386927, 0.6300286154358639, -1.3080952541552209, 0.6604421930512635, 1.287559802212576, -0.08417912067476299, -1.055101608392456, 0.07963333175362575, -1.6548524511859821, -0.5873459059886053, 1.984078968024128, 0.5181060190004441, -0.3538544965041039, -0.8979390630145935, 0.1103176729677807, -0.30164816596393396, -0.49246339852713134, 0.4286551321786259, 0.6472409444640754, -0.4622019651702617, 1.734424359099162, 0.6741899895850506, 0.5809257234342867, 0.3051228738431466, 0.14636711119161955, -1.2342636340780087, -0.8411679416566785, 1.7618542443585357, -0.5229864667031411, -0.6645354109157323, -0.9671229211459664, 0.5151960903511322, 0.9391674708612275, -0.0879297797636631, 0.05000331305535898, 2.1002387497588764, -0.4247903284193331, 0.583512598788058, -0.5677765227877059, 1.3129703140509728, -0.47088100017562595, 0.8124124812927275, 0.8497310179587237, 0.6780286459701924, 0.48251345769418336, -0.5696688557350115, 0.6325621658276099, 0.26889574161024277, -1.6440168147371468, 0.3569675162170875, 1.4048319261954456, 0.8458190722908256, 0.45768275200213215, 1.3811797885102692, 0.6999744188515377, 0.4651775369308269, -1.0501717722179247, 1.4563789003855365, 1.4392041347990447, 0.8199708436528891, -1.1523820271847032, -0.03916963300564097, -0.5015966896659513, -0.942241751595013, 0.5961774780935656, 0.605958673853888, -0.7274585091297648, 0.7425569476383947, 0.407685541367452, 0.3595151470912161, 0.2799496826787855, -0.6474144211703778, -0.4481272932464624, -0.8228984804372724, -0.4902906718522348, 1.0698331108876071, 1.1546402429260452, -0.8099899311343531, -0.5208729425960182, 0.7345748986154631, 0.0034766465391087315, 0.4149021387654321, 0.5656161804416215, -1.3558731917260332, -0.9836148542905558, 0.4289242987263369, -0.38872175710007234, -0.7149989022883592, 2.219273316727481, 0.06631483561595382, -1.99332641552663, -0.020408864466345444, -0.08254705787856118, 1.6615021708637303, 0.5816444243213574, 0.5785909074978955, -0.058711664996323985, -1.2217380603360726, 0.6997284073653214, 0.09101334086289303, 1.63756966758131, 0.11114052823037854, 0.7379518711654234, -0.4990560758571043, 0.15459946809516759, -0.3814855062665162, -0.19977289829034722, 2.085410386049436, -1.9434206848060238, 1.702706144914375, 1.7903685362318054, -1.0480648851200984, -1.6128851695746267, -0.1843430064133794, 0.5789595634544896, -1.4695724248029796, -0.03867898324227136, -0.28166585114128323, -1.0254703851316427, -1.0593103258843817, 0.9905527253540973, -0.5028246210372139, 1.1445798962134446, -0.36076045693169434, 1.0172281406708608, -0.09194143034841526, 0.013763337024330517, -0.24195913154283452, 0.7616290694393326, -0.191955092375137, 0.39503100365293814, -0.8779130075379228, -1.1093794474670449, 0.45590551104581123, 0.6185587499037559, -0.050348309454478976, -1.447585355192694, 0.2869725999232302, 0.9673210233942194, 0.5949889189163747, 0.02787838843876161, 0.2796744313409705, 1.0660427505093704, -0.17915446503868449, -0.5186587572574402, -1.141827434856396, 0.11055797981473608, -0.28048443782044197, -0.856570172817525, 0.14805893503459922, 0.08442758348120236, -0.2436390839465324, 0.8091358463262333, 0.5931936684110825, -0.9252150325296353, -0.3224941820915519, -0.014236895148495679, -1.3727383531684139, 0.6458452399269576, 0.4941172601387633, -2.2581570645091724, -1.7254610612501866, -0.6884568698058693, 1.2772108583680069, 0.8136145868733207, 1.6376768514161828, -1.3499255819820493, 1.9321890359285712, -1.0971365316386033, 0.5529102428692895, -0.3630777473131952, 0.9980961801707019, 1.0446064555220698, 0.19370692048386184, 0.8942327428465919, -0.19557436924334268, -1.0070880619670102, -0.5046437833708612, 2.4479368369009906, -1.7799008349237213, -2.2589960052365337, -0.3994312075874948, -1.6429644839295021, 1.5528210457662723, 1.8285503497457822, 2.5182006486248496, -0.33410214493171664, -0.9618304059629299, -1.1756672079357364, -0.9263755407331046, 1.8224677266831222, -1.1710395661436181, 1.3135366267237445, 0.749179016683685, -0.5567993837478388, 1.1706291921515848, 1.8787040720584571, -0.8656816888859257, 0.36165756074504574, -0.23476642179252286, -0.1885320629869072, -1.4664625222573204, 3.238986155764842, -0.7137571029514919, -1.9894604310577533, -0.4742828743780636]}, {\"axis\": {\"matches\": true}, \"label\": \"label\", \"values\": [238.86608496790137, 251.262891352326, 143.15476942825228, -64.53371360996363, -80.16792929803543, -231.25608454414976, -107.93358138703778, -106.31585700178819, 36.86821946139459, -46.67241218154865, -286.1071878615053, -136.74110913790275, 250.17464700278435, 30.14479649557849, -228.1227271225432, -231.12521677496562, 98.9155523949864, -9.50915147363547, -194.3305585073123, 81.77089427377624, 217.54100195452298, 198.25686247695657, -27.2188952048581, -146.79278660211367, 53.67611789905051, 124.3803135862018, 156.3515030552447, 30.943676860092147, 140.1317538912283, 83.89238487118173, -398.5420957696558, -103.58120295727966, 27.410559135314827, 146.9984919411657, 59.84749388228431, 68.53932424462951, -187.46224047665103, 48.80801409879804, 42.290565829216035, -430.3749034397829, 53.97442763810233, 28.92536168652022, 52.480343333411, 104.81725652166307, 107.36063893926533, 19.587514403897565, -96.3750937276038, -65.20099578582803, 134.26514264496936, 39.088717855329065, 123.4191017143334, 46.50842164952468, 86.98955314355464, -88.24156074179302, 33.15372639135222, -75.13961150011393, 145.94495839267282, -63.67184217163353, -36.64468559111474, 41.25356778559539, -66.27882638354937, -66.89832048059819, -132.81017163369853, 179.92495355476032, 210.23559205495528, 80.15590350397045, -218.5539997934794, 20.56163537112333, -14.087667282489662, 57.23886755330622, 163.6859354585232, 109.78912937933552, 181.8234528984562, -79.3627734207005, 18.94534552696218, 47.493510223428885, 253.11373218918988, -99.81120353802052, 89.91899831898994, 38.50770904021154, -10.425654435457623, -34.694468278635156, 22.409773721949414, -106.58710168682313, 158.07845148823355, 398.74942615638145, 117.87311781698605, 119.79964550292111, 209.56826950921, -85.26990631130923, -1.8704414145274857, 189.15254566009747, -452.6792012695935, -22.354124227486764, 328.18497623520915, 152.80948987161221, -129.97559997273441, 250.09099448292864, -81.20171854846812, 268.7865742972308, 156.44117499272875, 310.772639022047, -295.3098232309861, -207.48938074547164, -170.79702110690442, 2.6970122039735998, -37.213119168348825, 102.43525205842285, -28.320257938809576, -197.96026804190248, -117.43396365898099, 104.27250002071784, -78.67135737797656, -315.5998778291619, -378.9086014609647, 296.30032524838595, 35.66274957666795, -49.746411193339554, -58.593544410011404, -213.04692459159767, -0.563726527529326, -49.764886434278765, 187.04460263073003, 55.943472930177684, -62.96457828494185, 24.315941026971643, 123.67138921552078, -552.197621600822, -228.0973429565498, -173.1594662503715, 126.71505374499954, 6.850942082168256, 241.13502301109827, 123.92199938018237, -49.28998845133843, 129.4679750396957, -59.39172849748678, 158.80024476253834, -16.759369130345547, 104.2046000717235, -148.52401242407115, 129.26368848015045, -82.6542005870114, 280.0589971671266, 21.05692512759201, 42.965643982040646, 171.46513686083279, -79.79164585161287, 21.5719832728521, 52.74932600663132, 23.2434367361231, 9.80807723113871, -18.52429066358248, -53.971794501262295, -140.19519894487752, -22.561653012617057, -122.38348495656633, 196.28867023005498, -42.18445389926019, -185.26370196242044, 52.88697095415487, -163.84473383769003, -176.1645768084462, 134.89612180561352, -25.06672196777444, -335.20851203570527, 115.64687133506398, 36.062019450778834, 58.24311516796694, 66.31138507204838, 193.64607596460507, -186.06179070656242, 0.5710767072567968, -136.5551669305156, -60.48542737076196, 141.22314872709975, 107.10885137689496, 139.46936377613423, -176.44658364121955, -104.22269055830516, 237.64588221114553, 35.16124141187245, 51.1351444710605, -270.3118412863515, 68.49246203486783, -132.88276104039113, 18.944468507575948, 153.17746187425502, 11.828498091807248, 279.4472184851734, 7.682620744810098, 180.08347111197958, -76.96310557735431, 34.849435476034074, -235.23565292234537, -121.79261969773131, -170.62948812590463, -51.92231730376098, -254.37371858363457, -25.79819052997918, 63.48045222674388, -57.942184683181594, -26.753163595372172, -163.122790254486, -61.46500711349595, -33.57623522014623, -157.11522825370596, 254.81611167448665, 205.64016047625253, -54.988502004045465, 10.257099988138584, 145.64150467272756, 161.03117692891294, 271.68325223310046, -276.4737815634659, 149.70943227009613, -74.05125594409004, -287.6377604403258, 52.75142984028966, -68.7865389032442, 217.9380586909778, 76.76905991187564, -294.60764401005736, 21.48859074843861, 52.44704830767921, -141.4007445826635, -78.0928481062439, 105.8959040933832, -94.60055576764535, -9.08134596632556, -115.68654272772906, -48.59265264589245, -210.90275163428328, 202.1011487858423, -148.21954218614007, 5.802429873469315, -28.813444837217062, -353.23850005334043, 33.28155354917238, -160.2692985318532, 38.84104105903845, -169.72516905319605, -84.12178841373962, -107.35127856735298, -169.31738597894946, -165.34588322809464, 1.1596246444693197, -50.12018202277733, 78.30483722206512, -109.60745678140862, -182.50237745050921, 169.8936668052186, 61.23150199192186, 301.16529730617776, 79.05312117857217, 91.00027486899019, 107.81250137238254, 159.07759471396113, -33.606299512853965, -52.00156998276251, 361.65138163342823, 252.24329495615535, -263.5277875596514, 9.606519712963593, 264.5545820376085, 80.91006975826707, -307.58091775722517, 161.80570135313923, 76.99343749427581, -423.59793411780237, -66.17693380073231, 49.564114559908134, 80.65814007215833, 130.26378075999213, 241.6298611949959, 46.02207179365524, -192.86271738796847, 110.03041174588081, 84.10581692032027, -90.67692136712216, -4.461087002892555, -43.845821664620225, 110.14249674629494, 91.63451934268096, -64.44089575723423, 63.80263678930423, -0.8621844534307712, 119.97206314536754, 143.41422577183775, -119.13558745236752, 127.20831080671675, -32.10677448410082, -111.25081896785451, 77.8231242788204, -186.98725164783394, 16.014270302053006, -37.63818584416775, 196.6897603700475, 25.076132117659167, -220.13641463815526, -76.88028992430205, -20.37608460495573, 90.57033699692799, 102.02310375263735, 114.01168785271852, 52.292257652776364, 291.30267121821987, -347.67080971471563, -62.311592286399986, -39.81157966970689, -90.09507061529963, 105.39084085490799, -108.91141737502083, -27.950063104549216, -138.3263613817879, -6.471803903316186, -84.65999423213106, 253.91039183102563, 9.860042878493289, -14.433571603183072, 45.30640693611145, -203.86831390311545, 36.25029481575817, -210.11566024681912, -161.83006759145024, -71.47147956098436, 198.9282920043553, -89.7224605834493, 173.37477793927536, 46.72256784901406, 347.97024493819896, -108.57779262561806, -325.36137145111314, -9.618626175518564, -142.95052476481825, -313.55340243529963, -208.16141194966667, 57.62265452927015, -3.0895937842481302, 24.541350692330013, -142.16063589201667, 96.33066762789582, 24.539381038472253, 167.75003537001183, -182.01807747201374, -98.28087157499314, 30.68007886969903, -67.27596559572498, 48.38844443488434, 119.27628707689173, 229.7223030805245, 12.199340046513626, -257.14715259867586, 256.12141124541944, -57.28192171469375, -137.46672047447473, 202.80816197117895, -222.05837957739158, 140.21881047055473, 64.86226320781931, -252.9988703550216, -6.32815120228576, 25.915170017330475, -180.5995889650406, -309.9590304315876, -27.29799366980161, 77.4283235246922, -119.79992355843169, 95.90578497932673, -83.29472353836292, 9.872362406418503, 131.99684986099032, -161.35616182808326, -126.20246774287992, 78.08630423911666, 43.391877627465625, -303.13492187229383, 8.096073102065638, 204.80736850728226, -146.09278554572157, -148.2401050682037, 92.34852525073889, 208.32386634114562, -176.15267795787088, 148.56447882290377, 279.1303018580864, -49.366625424396005, 283.48394360426323, -192.1329188794836, -198.95242761869852, 12.955518169512672, -100.9110737876221, 30.33783377713918, 271.14801843856463, 325.8130476463924, -105.50677977479023, 102.40898783055323, -169.47127934134164, -37.03223794054921, 56.02440143162907, -93.08751879903308, -84.19082573433133, -73.3528272985888, -44.69865909673597, 112.01324400104495, 142.9682363120022, -253.27844703819375, -199.17662865662547, -86.5685187359093, -148.41907425091625, -66.68963270705382, 127.76090327209938, 61.04111939030494, -58.785235038680796, 137.90424494032635, 2.5948909631695223, 333.4100892937066, -131.9305738569512, -131.34324261957906, 100.04267848777445, -70.68774443468037, -100.30775146939752, -125.29262189835067, -18.0764480856604, -138.74514112090333, -135.97072055703106, 94.2988304343835, -68.4005724023673, -148.73289417072868, -79.208076450081, -48.66249358041283, -32.352236823512, 125.47128087694537, 365.4002443022992, 159.02241411046833, -27.953221298305053, 52.29921335199165, -339.154563433654, 122.89301298808718, 18.257875873099238, -150.33588593361918, -193.21791090168404, -13.777266380839926, 77.61280534321406, 136.3690493546371, 193.94969591741477, 357.57920310378347, 221.10639657259688, -34.61791384774581, 75.34567568404935, 116.72078989259646, 120.17677469461447, -165.0335290696698, -202.7542689030895, -216.07508307530162, 123.78288459457774, 76.22725194345719, 57.81206523985783, -162.47482621850207, -45.71483269900608, 284.31229891822886, 203.05843660161446, 124.68056657161607, -150.12860279391379, -239.75670223822044, -188.17167850837467, 8.149977303821103, 237.08633808982958, -71.26707165974251, -63.269622341544704, -278.5928101731487, -85.66181144049776, 124.6974027429015, -113.39741902014094, -21.109650252109546, 210.413969599035, -374.96041372326135, 83.0193573934441, 10.908449000654898, 16.574830184133106, -89.277280358029, -86.7760367972511, 16.342061151486078, 2.7430724339570816, 65.24220774238485, -35.28797595502897, -371.24904668563386, 410.5045895164108, -95.64004426229288, -137.1575572663433, 175.0518807650236, -51.80068419372009, 65.88345357185818, 120.48908950269136, -328.68046453567774, 188.6382463186319, -12.623533990301269, 368.9160437178683, -126.2569405466383, 13.045615279036952, -7.73079733514815, 64.32296649376116, -9.729930867957265, -19.34336813383043, 12.335469057733562, 125.78575945939602, -19.44920022345524, 30.53690259958425, -181.3423773306246, 11.953221222056246, 240.7969568533206, 119.28887134423293, -61.21664454865981, 80.00682118796644, -207.92200405660617, 201.4281104192802, -219.52810074369245, -37.91981442770342, -121.32070264027818, -35.95037396161251, 73.1228730348019, -0.7792236480518966, 242.167002952629, 64.82217167433173, -97.51868227571941, 51.54301964516077, -64.60498270248162, 124.97028932983287, -110.82538982816051, 162.12299306451078, -300.067539594957, -50.98758072981428, 142.6075421079405, 296.56330215992045, -33.19865326351708, -64.28466339680574, -10.574841534355606, -13.254909910648173, -78.90951713668508, 342.6895082248575, 98.26973881345052, -97.55172162335892, -36.19925762021915, 346.5884352214965, -104.27992108533631, -208.98328782124997, 89.44640304356047, 77.27019760311046, -17.702798052434247, 176.22552898554352, -198.91995057647492, -154.6552845708543, 126.44808746654724, -18.105153717157236, 84.8159172265146, -1.8973794478432566, 100.5437434330654, -57.417575462169424, -132.9623419683953, 150.48044490332376, 332.7763327772242, -184.73308692149442, -150.95835377749088, 227.20947045506566, 108.6751032260795, 7.343247743215116, 75.68369290702027, -44.91413927585836, -43.51672414259166, 190.09098348068315, 85.6223615433581, -178.04089125648898, 178.61100647183645, 412.2466561957707, -125.88587309198952, 73.96408499711241, -183.60572924822313, -239.62104947780327, 217.46195787889246, -47.423491135965094, -238.88089121518817, -33.438388693967724, -30.084750164011695, 35.304297707279545, -143.1951607325218, -73.68863516062594, 270.8157521391202, 91.8818036817946, 133.660691590539, -181.03049280711753, -293.5077768127251, 83.18265891817211, -267.9706218489956, 49.73602473353333, 145.7251628960536, -61.0389059208341, 151.83178788507317, 219.5312276868301, -75.40754503228216, 121.8742040511232, -333.25743796416384, 171.97366117599273, 276.4629932083067, -169.30071909062016, 130.71557559887697, -69.55597266372958, 237.2753341265973, -216.86061332914306, -92.34059202585492, 0.4173014787782421, -95.87987607909689, -181.39571316610983, 35.869130897067976, 67.33073159328293, 193.3371800292507, -117.55029997512995, 55.65456154739665, -74.38558813228687, -184.6001007560904, -3.0405851004792552, 301.05972494956745, -90.85760084510694, -347.1131064887646, -149.63607595900814, -190.4351246855241, -51.03415835033486, -82.33274824912316, 15.96283529137667, -77.9851733673385, 57.55000110462848, -77.24534611318843, 14.241712592225149, 248.20366513012596, -33.82773270427773, 209.9562250106763, -27.03324577341045, 105.37744346636644, -9.377782249687797, 36.94367711149157, -175.98620875036602, 72.81361435205056, 15.512251449219626, -93.85634044815438, -26.238796793083324, -55.124164462892594, 166.20492671667972, -188.77117804641227, -71.44218077695612, 48.675824861998066, 47.9320483098834, 316.5158652836285, 1.9716645737311609, -526.1300078140519, 334.9900869824337, -145.07255968808104, -38.516915649372315, 433.55458374871404, -46.07689322882417, -95.15176459152515, 51.74908474911731, 156.14883844500997, 240.41718834458104, 123.29749800083724, 97.55839211997893, -51.80769985644258, 85.21442436106156, 156.42677714061642, 74.06422847597685, 71.46505294504306, 41.15716311134946, -197.3890940981079, -232.96835471069798, 1.8734289887660225, -137.431840368003, -67.1500481244099, -263.8498147381411, 336.95211782741666, 44.411229196308014, -93.37788629184743, 14.509667597251905, -13.903668456178224, -76.89474534118807, -306.6249704346581, 71.18928521621164, -58.35236166647232, -208.033408359953, 4.387109778592503, 11.338595826499342, -115.98077303248186, -64.70688659585512, -172.64544222588881, -26.07201685408502, -269.5837877754765, -264.2610171107324, -144.98253977174517, -270.80423178015235, -42.36848002230618, 163.12493468640528, 3.0597451014999084, 115.29331830539391, 141.2508251625958, -55.51698864423685, -140.59739132375387, 30.940404848798522, 24.52683779813, -209.33121715888936, -254.71101395158868, -73.77730320299779, 70.42377848984509, 72.13991537414452, 59.70488369208192, -24.42517924138, -161.33073116095022, -206.36341618239175, 80.68609368796088, 203.76204769440886, -152.54308209417366, 156.05949394424212, 179.50394549232757, -93.88974535206562, 215.31978679436267, -231.65822019689276, 44.339260930402475, -73.1359845644767, -240.25568353234922, 295.25794322820155, 24.90633827587431, 42.26228067737381, -59.48892365409547, -90.42143935467593, 186.46721653764297, 116.19000894571468, -164.78696109757948, -23.411938902518287, -19.33947514625862, 306.27714491706246, 30.198342956848265, -2.903502539258767, -227.38462137852656, -45.44103409368, 129.0558224098416, 100.37779069674602, -50.61480711889616, 101.56715728118715, 58.67737357994478, 26.200955182686897, 317.1896282373678, -236.83392174317683, -247.79534920051069, 232.2020067601017, 339.7263160711987, 346.325660935348, 200.28876002014894, 59.46261655337029, 115.09588227471252, 37.72378874869895, -11.056603130670847, -15.040466314891244, -50.02100101332661, 46.64474205155004, 95.04090581750879, -159.1919105585256, 430.01476591617165, 34.30961700482895, 15.164564662986315, 340.96607264666784, -134.60425396156336, 65.19145221810368, -10.826252378230809, -13.294672159140262, -33.293627972804366, -115.39827735183212, 138.35605891304488, -167.93014027453373, 201.0559104666947, 129.820118956448, -42.460732173745, -188.31712100446518, 106.66682878732799, 7.768638011752657, -147.68118512685103, -134.81391928195836, -9.982859760315094, -236.96900990140745, 140.94141653740672, 109.44431797081339, -46.717015772858176, 57.97846066905346, -14.805653859539547, -14.04812897057404, -63.60927541306942, -324.9508888648435, -252.0429108388365, 164.00005787797798, -57.59625967133684, 19.75373155357522, -208.34563014761198, 151.75401069331622, 148.68488747633035, -98.46261289571461, -85.47915156389372, -115.32082714083008, -272.6317284544282, -169.30468178931142, -3.9725204825204585, 30.864776084636745, -29.62489180754843, -34.7499952502532, -142.81317771891173, 5.445275955991715, -179.32400360198082, 177.1958199609151, 8.939473106512878, -103.13781307901672, 199.52403388639, 41.60830632389292, 19.104537592384148, 88.64457408974876, -144.68294623087542, 74.72944358421668, -63.81334210769268, 85.40927074815852, -170.10547654712263, -287.7756409555088, -2.0176208005008647, 44.18141996643746, 173.7495499674572, 13.819272858337087, -151.02487149008468, 325.64428783983857, -140.9296286779541, 220.28345670783398, -174.83925604542873, 89.10429722638911, 24.417064976032023, -16.58523849026416, -7.569099816483671, 261.2907344506335, -37.99045757367594, -56.2125995128142, 108.06626714893275, 6.75813907065114, -341.4189070253975, -36.63046775214271, 221.27028078153626, 78.80154816636727, -53.05810203390405, 190.12512904504163, 128.37209265591025, 45.855120886148455, -53.636322347676426, 412.45974674965396, -36.890849733231214, 242.12027188413924, 136.15825773228931, -370.24066496590524, 31.5608471765388, 15.203476273323574, 113.88629547722726, 99.01478435088455, 45.4040405832475, 163.2981786341982, -72.29211942111799, -20.49794045392655, -29.335580760012135, -75.61438570565048, 213.06810046439605, 38.1423895732766, -40.791663797240076, -81.79250459249425, 78.3046078404257, 27.03292228987248, -59.15785045230068, -21.514218387402778, -30.986385185104183, -0.5042969542213527, 6.051946992485412, -1.4673952422811567, -77.36210068102895, 75.5760497972444, -17.56321675450776, -211.61736705211436, 251.89654114039286, 112.64579936382744, -220.18734997488693, -48.43447815601202, -147.04597028489673, 55.043370866640274, 250.28717901286691, 81.03720703179475, -170.4196922456391, 66.060395827723, -37.743797608500905, 59.12938148543503, 229.1363939242127, 63.97081096229587, 2.556443688281945, -33.16552020443518, 126.26417296974506, -194.01130370787897, -23.658572909872525, 462.0723845498761, -376.7591309495789, 232.0573418532657, -27.693243186761606, -96.2344929015611, -370.44164974777937, 105.19693956968247, 94.72506686251424, -71.9796190725156, 62.64188773191377, -105.43619910376653, -151.87602282733465, -10.371774106288356, -94.42030294599364, -118.55483129836945, 168.11884817162627, -71.76337046542929, 2.6863085942796374, -148.29554223820156, 92.57788703499725, -62.409194709486236, 213.96242701113954, -59.79497520904895, -123.85758855359123, -102.24178556105025, -10.315532580990862, 142.53488496525273, 105.63099020494515, -64.93281840018184, -210.72135963587345, 170.78938209289723, -100.05745785073707, 120.33010769299894, 14.606610610318754, 194.18526513111894, 195.86219234071262, -98.73092969601754, -191.95909354991, -155.4117955102185, -48.40421251828631, -248.85754251555193, -190.35251074608146, -39.673803781533394, -54.544300754691434, -129.93837360633822, 145.0395469902075, 43.87480763740933, -242.7218646351152, 76.10078404039204, -229.45361912381065, -66.26083207686825, -66.7257126208515, 160.0974286800493, -169.09709387609334, -305.1099986476241, -141.4899709037341, 64.80497846996863, 118.69487852004741, -156.6090403133626, -34.372914445197, 126.83376895391439, -214.97868825626944, 34.905797058786334, -320.9462015781946, 29.81911162038857, 103.26436013813684, 26.106329956277932, 67.79128715562595, 96.73417353693138, -55.56994601763867, -303.4747428623286, 418.5579868439778, -105.6100113236322, -234.21028831347496, 150.84603652304153, 56.47744780629249, 211.41167963794297, 47.413566239411836, 167.51722292902923, 137.67560818938128, 125.80862133057296, -286.6219808044176, -100.61624744082722, 51.517084832918954, -355.520225862098, 54.92420748191984, 153.61835690665828, 52.323167244947285, -79.01053251189131, 228.0023338125533, -27.30878316659441, 107.28244053195907, 21.604976943053067, 34.11213358748529, -82.26739408180296, 431.51951017257824, 57.66108714994749, 53.686535144853345, 58.45525068149926]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_5\", \"values\": [-0.10544417194253893, -0.2373310323325863, -1.4700684280864358, -0.14172863105500502, -0.8253149465245124, -0.6644111266430648, -0.38038656922429326, 2.2213848442642843, 0.030315230160892815, -0.3743479211588623, 1.4870710532080904, 0.4417510443058103, 1.3016665710723399, 1.654475845884324, 0.09792593399189772, 0.14961581460222165, -0.20395862573647916, -0.27459825197273613, -0.14098672230303275, 1.0816390271338776, 1.369568752170782, -0.30396331472933447, 0.7164163429345473, -0.5087933537587505, 0.9002675332714085, -0.3404979547788019, 0.251400674130692, -0.015792055730129293, -0.048088183663689256, -0.5831172960737063, 0.6094331045906449, 0.3368392247335461, 1.4861075689120171, 0.8797488651811272, -0.5265396889011427, 0.47444795225998004, -1.5630524202528415, 1.699375541205905, -0.27083091132926473, -0.42325678472479483, 1.5736397749523978, 0.43948327957926475, -0.840512701172676, -0.018726552341296387, -1.2588826074347204, 1.3269501807297117, 0.725976100449353, -0.4607891033360676, 0.7537177192793931, 0.7977494116539923, -1.673846686933879, -0.1413046216302122, -0.6343895039312895, -1.2488133397674868, -0.5512914792808329, -2.088580714791067, 0.16710809466884954, -1.287411306810989, 0.354686849765022, -0.09073802541976653, -0.6897261398762691, -0.7749190862185201, -1.4810324316951262, 1.3429489463838673, -0.7771496125112944, 1.6512638686413783, 0.39781175966994653, 1.0339975098100405, 0.4338230945427534, -0.7673750408891366, 1.3474352682986575, 3.2842008425116105, -0.247073083071532, 0.35612875935441446, 1.8231447879381295, 0.15673736996006926, -0.10319956036197671, 0.11703872839762963, -1.3234440747698528, -2.443920768755391, -0.4750614036055179, -1.1973952257378941, 0.9366534185121418, 1.1010300152591743, -1.0830122224358438, -1.4479677912111688, 1.409264626170169, -1.339224393849242, -1.1026686110610364, 0.6650980694516715, -2.056785151598506, -0.8260799573105032, 0.7236572793061818, 0.16461279084568373, -0.047571476220277714, -0.8083279975045745, -0.0034715084695079424, -2.6764354547713265, 0.4798301080789255, 0.631849306944462, -2.184257774802686, 0.8448390662520526, 1.0864196485107285, 1.1673326482806747, -0.8607144926523514, -0.11524903129237539, -0.025173274712932948, 1.1134081871974564, -0.7849087731052529, 0.32834023258217726, 2.838221727214446, -0.181114815457162, -0.7147029825560605, -0.3757789418047633, 0.4126864993360537, -0.33217253732116636, -0.7966723145228257, 0.9487113107314382, -1.2096473703107187, -1.3613903571780201, 0.614297547947821, -0.9139196487105413, 0.32438381037105996, 1.3634021721816063, 0.8337524894747277, -0.5779787551269753, 1.2711890945608688, 1.6796349317565498, 2.3880381581807377, -0.15470544317246232, -2.4436188147697755, -2.1941041337029326, -0.4909833589890415, -2.1051310904812652, -0.03746501787129471, 0.3445025411726954, -0.6351014366333465, 1.1836609929199917, 0.7242758923459347, 1.868757428969554, 0.7871987193003817, -0.979709387356298, -0.7857522189637064, 0.507233873701807, 0.13436488891836249, -0.661062474879535, -0.3460910276135977, 1.2701577094453405, -0.9207562868896195, 1.3480176590277733, 2.0687031974586714, 0.07303979407614779, 1.1748953199241607, 1.1840459200907598, -0.38171323031885795, 0.09161630664253431, 0.5470638595881444, -0.4590440708664122, -0.6629642216270133, -0.768791737122006, -0.8996683102384442, 1.0947381821362177, -0.3883457663071448, 0.3848146678215129, -1.2559164435745633, -0.5618915798286754, -1.7453673401807988, 1.8001094422758355, 0.14780844908856494, 0.7096994962319443, -0.5769073852189038, -0.019440439277519334, -0.44698728720693753, 0.4057333222087011, 1.1022256084001814, 1.5009728847698371, -0.11574191659314248, -2.205732308227481, -0.7510985373595055, 0.21247645510301283, -0.4305672103461697, 1.5079292544821408, -0.45291805944173386, 0.5620314951949327, -1.3849606846646099, -1.0150067256613147, -0.046021264667652474, 1.2589378196895031, -0.6469472217298811, -1.0345916817657195, 0.40101662522625586, -0.49250661187962747, -0.9574565653651119, -0.7039021858432306, 1.251053571817801, -0.2989045259107884, 0.7211582217690519, 0.8138581650215516, 0.9705363357435766, -2.441326435926169, -1.5654124286386377, 1.597175643893746, -1.115308975931489, 0.440908093175715, -2.753048453926399, -0.09883437168512332, 0.18256953376233523, 0.3265543573816411, 0.13296095458071147, -0.9929529845754241, 0.6679103143825269, 0.11672973629207667, 0.1786772236252458, -1.1214372041560967, -0.8705948140295081, 0.8165341233394032, -0.532252355090621, -0.1361494576544623, -0.557532016582394, 1.385220229676302, 0.538261794845864, -0.12073920977722756, -1.1869015718880016, 0.8129847115689666, -1.0617107492840818, 2.0600980507723703, 1.823091660232684, 1.3155803724140103, -0.14968913207747508, 1.4798193323429571, -0.11886299293373101, -0.5584115308954224, 0.534174463685642, -0.9057298748801629, -0.5744539256633991, 0.5742842270293397, 1.6346865884051838, -0.7219324516113002, -1.0683258784350487, -0.769379709684553, 0.7416505266535145, 0.3226628821196471, -2.057961553659024, -0.6711686529144442, 0.5443052679152163, -0.32276356733904465, 0.14273228357576287, -1.122954631963286, 0.0354216365826217, 1.2472014282268677, 0.2760638627948299, -0.3457466145253297, -0.8417736557439501, -1.7757046187865881, 0.5856399187878887, -0.7512743758315203, -1.2454962272566186, 0.511937812863371, 0.0014515122545540181, 0.33424442196240656, -0.6432684853584021, -0.329698995879445, 0.5158228664615543, -1.866695395464917, 0.6689204440006615, -0.4947162521100341, 0.6627986587700618, -0.43883502831983345, 0.9622218803646506, -0.8028728740654554, 1.9721759741828182, -0.8105231768383353, 0.7210916988438096, 0.4760168471161337, -0.014138839225942557, 0.44489271250304135, 0.8249782723889256, 1.4124532026166272, 2.7196129298581906, -0.8215272169354041, 2.06251518967885, 0.24264538300347513, -0.7802284388155326, -0.34615025783864173, 1.0360612522302162, -0.8504920948343342, 1.0796160268874613, 0.5997930754363027, 0.7451133574644265, -0.37107251786244855, -1.267806958678331, 0.01243465494852135, 0.40858777407913516, 0.06406823933393561, -0.4086581209966057, -0.5187979011736843, 0.5442334360496944, -0.6312978881557331, 0.2312231155801507, 1.410835327543251, 0.41546168110891074, -1.3290067430404098, -1.0026621977879573, 0.13333116486757113, 0.72653997351916, -1.2807455222089408, 0.0994832824948269, 0.3781760901880025, -0.7178526352928131, 1.1077800308538088, -0.42267794373831447, 1.1260123008270708, 0.20552166191860846, 0.2548328806048925, 1.696406107507436, -1.2235629219265596, -0.01262304447235816, 1.302108982962616, 0.39900717458142654, -1.116349865567872, 1.0527856869856607, 0.08218932661461947, 0.14997148869380153, -0.6414013592388557, 1.3945936888108783, -0.4909133011697816, 1.874496408812911, -0.51315917052401, -0.4539045377108924, -2.1500054348277384, 1.4480772144129888, -0.019593913157443233, -0.21746392940085024, -0.0930430058241023, 1.8082432753746374, 2.4786916943458155, 0.19904334400599213, -0.7657620247965133, -0.6117329858247534, -2.4279042910723447, 0.289022423792128, 0.7178666946261529, 0.7672240970621188, 1.2745012822375354, -0.9524326714914962, 1.834406405292353, -0.4888641523065382, -1.3381780755551815, 1.2425078267840985, 1.0926775894763197, 0.7581522067316258, 1.3766821276897967, 0.964241105259313, 1.7359884426198808, 1.475583899311227, -0.6787236422694551, -1.503472077518976, -0.6876014475406254, 1.5330308322368982, 1.3530255173194286, 0.3505694380163721, 0.8045678411989263, -1.723077030378615, -1.8787783420600626, 0.0795072005808178, 1.2497200335077714, 0.9199820520397237, 0.4918893050954359, -0.10121237146410203, -0.08007016024987645, 0.8931756145344859, 0.20825030338299735, -0.7728620762903384, 0.41701038427992343, -1.2562192790828854, -1.3059712901462746, 0.4982795529364944, 1.130348344226265, 0.3539839119015196, -1.7805524900733758, 0.2486280186811286, 0.4650834558673809, -0.9661093993119165, -2.1390181399177255, 0.7084835569164385, 0.7726042806974757, 0.38679196730379595, 0.19659101160670175, -0.8140129131481979, 0.5117887847213715, 1.5933844425006467, 0.06805177566556841, 1.1856218827660603, 0.09398460622999082, 1.089026780597576, -1.25409248953627, 0.19110243200331517, 0.16248065586042734, 1.8057936769491834, -1.4861406494639822, -1.9524148655367042, 0.03537715196401922, -0.20611702877988985, -1.737000322239776, 0.0011477697032425288, 0.3300511607693263, -0.2154542859321978, 2.6244526132285193, 0.2950434758919292, -0.7803631897282456, 1.3547886676743832, -0.03424328362552124, 0.05946902235841014, -0.9561612312571576, -0.9592955628909462, 0.49946797166218376, 0.6667148515106047, 0.7636248949321522, 0.39251687338487623, -0.02452897761880733, -0.11908343232875811, 0.6732744554151309, 0.5451766700274938, -0.32733952556432927, 0.2964059828638086, 1.3580200416743704, 1.5816375198096118, 1.2194927577306633, -0.4530704026851313, -1.0286459852442, 0.8369135978860385, 0.007240039564219275, 0.07524872999959295, 0.47926020426313926, 0.524110532214951, 0.36585526038213834, -1.1090377905243625, 0.3153131710353783, 0.11866710663898139, 0.47327789625262295, 0.03374712890411224, 1.3269886535280293, -1.1974181942038367, -0.4269398733261195, 0.4295264166595753, 1.7339552761714672, -0.39028342171358843, -1.1368536099671709, -1.181487410521345, 0.30806447258823355, 1.376863545456371, 0.5716374260879719, -0.43180571314211774, -1.2348920107110342, -0.6292028224830838, 0.8870463285576335, 0.5173007362261471, 0.9714512091784502, -0.09748511788920176, 0.49008513045871205, -1.7901653620663505, -0.06500753610200857, -1.5257089003980966, -0.28420873022537835, -1.080556457944835, -1.263072251093668, 2.474461279181122, -0.07824716347978682, 0.026978160926482198, 0.13813806552396082, 1.3850620122514472, -0.005212395879156029, -1.1122999809861118, 0.19659594205016728, -0.5759279955336348, 0.4139082086185436, 1.0802921357579294, 1.7992494805214072, -0.2973503781242676, 1.2119065080245148, -0.12425013868497621, 1.6390771758737537, 1.4400301376327802, 0.16281751077012532, 1.0516153371277086, 0.8248394040698029, -0.11823426482669636, 0.21048943333355047, -1.1504215850405723, 0.6480428964572782, 2.009613745453289, 1.0120925333438326, -0.29870494851493606, 0.5377500224127197, 0.009855510166291472, 0.1324475944305647, -0.6659097226252295, 0.7317147245091998, 0.4240877670043735, 0.23972153816046757, 1.4163431983891503, -0.23308965052630712, -0.5951347360296743, -0.1273047431877288, -1.7476594755431614, -1.805602511048643, -0.24338853238405614, -1.2442830298785261, -0.4227025004853398, -0.7421602365355197, 0.3215699818861152, 0.115660429183446, -0.13046259224238718, -1.088580219242069, 1.289093981427955, -0.8928808934636163, -0.2713751030492223, 0.23135631585353358, -0.15876196808947318, 1.4157154631128828, -0.296376084313811, 1.850313609793403, 1.6269696835948135, -1.031680870526073, 0.5954447504497655, -0.9060499909057669, 1.6200147045522633, -1.974031226727196, 1.5315594069469645, -0.384418605968625, 1.9390530566374913, -0.1431943443769466, 1.3578445611299528, 0.873749722679572, 0.1316906028421779, -0.6758144891595003, -1.0276830315236956, -1.130385906185716, -1.1951388622859347, -0.27374064627852013, 0.1965068472238862, 1.1404315579330178, -1.1720977507772525, -1.3822519800110713, -0.23311482072002848, -0.5314246859503414, -0.8380485052165414, -1.1134391925659384, 0.4459674821657645, -0.4877265424936122, 0.292164822475461, 1.005753945404832, -1.856714996149536, 0.06717365734727018, 0.20739164852742972, 0.6714615127769156, 1.1469020689487681, -1.0776557185678608, -0.21870172424108272, 1.0259324423669158, 0.29519451393296037, 3.0245257079507435, 0.20811565656893644, -0.19636663756412814, 2.2866125966412096, 0.5430625235750753, 0.961056534623674, 0.09957663423777746, 0.7456194869604589, -1.0228928453276658, 0.9463277034887845, 0.9488768787120112, -0.28310118639905985, 1.5416715074021654, 0.592719610832032, 0.9547038648940616, -0.3129880740090248, 0.6181178739061156, 0.034102744689637456, 2.151449821525, -0.8668391149929883, 0.5271806529771939, 0.06199816932386698, 0.7192000426838617, -0.7678029081032343, -0.9983391355294343, -1.1205746400715844, -0.910670058117716, -0.44751639507195673, 1.7567254609714453, 0.40792767625105203, 2.1326456205875144, -2.154283044650901, -0.7481343029536709, -0.8155316042774147, -0.44782685084149854, -1.5263721621514386, 0.1926009878678201, 0.07214407431148115, 0.09012061498322883, 0.3042213085568519, 1.6903018909729617, -1.9658188233953136, 0.11239300278105244, -0.2712423975000702, 0.27987250382426077, 0.3862391610068106, -0.6075550800205103, 1.5104487149789119, 1.372298475134436, 1.4988710636480145, -0.8220890421231499, -0.3502565043331263, 0.07912065578166996, 1.2633955853670864, -1.6513024774915825, -0.21845898567724242, 0.7381793560733219, -1.5943499054666137, 0.888683270156445, 0.3301421833261686, 2.3363485282260585, -2.0960161091261087, -0.8954435742701284, 0.2690565650470924, -0.24981915340801328, 1.048434638748322, -0.09362219519046693, 0.622599657562483, -0.32883264760980757, 1.0513142016487116, -0.7394667732378843, -0.23849914333227829, -1.2257263119835085, 1.0264348959782255, 1.5050776829114785, 1.6611355164825141, 0.5119950951380605, -0.14159605330636452, 1.8189873364525464, -0.1632209334723632, -0.01854932787818203, 1.6930809404108587, -1.0867706336695402, -0.7733780433830773, 0.6164726748076127, -1.2402619703669635, -0.318861428585644, 0.4109548400216794, -0.044333488780079665, -0.3934605613019272, 0.4271462305246623, 1.4005627898405655, 0.009161654135569658, 0.6486736699883, -1.021920853485368, 1.7751262183457666, 1.4538382410093984, 0.10340370835718092, -0.877206847213369, 0.38578259247198016, 0.6817513713924046, 0.9409773848315492, -0.7059011046395113, -1.3126125756036657, 0.8236922466327518, -0.2452606361074348, -0.16471651512465776, -0.4268053831564345, 0.3599807240780703, 1.155474328492613, -1.3550156851949955, 0.31192493063868937, -1.1228456135116893, 0.3878330058900908, -0.7317201213991157, 1.5991154962148693, 0.5406889460856178, 1.4647553897954828, -0.012177810187948206, 0.4522825715483585, 0.3708442056036422, 0.3196275898501465, -0.9446131409404676, -0.502469385143228, -1.5600394942572744, 1.8980402616188785, -1.0560244521941677, -2.6015639369463908, 0.20878527286615775, -0.22884247917418193, 0.5880859313245138, 0.4400607413938739, 0.6048755634469531, -1.8677950748670507, 1.225865559445473, 0.33769076835221107, -0.8997986430332445, -0.5580309569352944, -0.1791842064114551, -0.7627500702267923, 0.30826879182780986, -0.3936828642486627, 1.3382894703497918, 0.8087675989544247, -0.6128951956255699, 0.14059228898576434, -2.0968029466982925, 0.9132161368355631, 0.6808065126332418, 0.4187227149645285, 0.2827940827209549, 1.0922508270700049, -0.2997011722971494, -0.013765390724899117, -1.0304184750703789, -1.849000056796413, 0.08699787848613708, -0.5778694724350688, 0.13124116546259892, 0.2642610427246486, -0.4134927876925229, 0.3295632246821472, -0.6994453642067344, -0.47812591606368665, -1.3561922713490986, -1.2323804861938132, -0.7832130457630578, -0.9020311439900607, 0.2448040783841929, -0.08128240737523, -1.1766167010591446, -1.903102787345415, -0.15710461465857672, 0.4280977585903998, 0.014825486524349354, 2.035994827045704, 1.1037435135442368, 1.111618738992573, -0.7751959378624889, -0.6316320444532374, 1.2079792655056274, -0.41361987098075104, 0.39313082630486745, -0.08296710523422389, -1.3346002132210917, -0.015501426955294441, -1.0150871813080617, -1.586771693615407, -0.2217468561885952, -1.0439174019158057, -0.6728590563756194, 1.7743984604068614, -0.15181132110797596, -0.08507357487925946, -0.4936753374887923, -0.3279295644158493, 0.8063396545131214, -1.522922398408385, -0.8815103426954238, -1.1353598222518368, 0.4728357827145013, 1.0340218971989075, 1.7613773637629102, 0.9464822097123277, -0.4153284781920267, 1.0962202260987894, -0.331227327686245, -0.8640564786891932, -0.13779136001705683, 1.232343564993988, 0.7776201005608496, -0.6348535734318358, 0.6814984210688189, 1.3321689821981872, -0.6346353015824117, -0.1126681205218843, -0.3582581392934457, -0.7542511593413938, 1.1818729365109775, 0.36045464317648657, 0.1996898501150754, 0.18667052390354563, -0.501426524817603, -0.3567226429708926, 0.6219209151481665, 0.65982958337642, 1.7717910044868417, 1.6547175358319253, -0.7735494731839445, -0.9008311605045707, -0.8355990734315139, 2.2250130456395802, -1.397937264212943, 1.0229873306269184, -0.9448434307843319, 1.759619571668687, -0.42905436461601265, 0.37249503347661567, 1.1959828429932748, 0.0964365445259826, -1.7522329997983315, 1.5138731911421188, 0.19336183402369617, -0.12274414272713075, 1.7731226500140111, -0.36468518734208805, -1.3305252217240402, -3.3159675560977844, 0.010244401084603711, 0.5988489001168472, 1.4583466744253428, -2.4252819245556294, 0.6533594753773065, 0.0778820873465414, 1.016243682240357, 0.887185415093979, 1.134610593524606, 0.04549057576604427, 1.2758759818559864, 0.16386402166857716, 0.07491479539446781, -0.49811868630167594, -1.3752952004858632, 1.6317938127616447, 1.1506649046951716, -0.3405432108620061, 0.7490281618711356, -0.6445080282094142, 0.3200240399601825, 0.5580697571456853, 1.1396371145515256, -1.05952868202165, -0.6718395529656396, -1.0606375827425885, -0.8696953970558563, -1.3532192109469676, -0.674820824015978, 0.6590107798482457, -0.1865911760521508, -1.1380780379907662, 1.8455698157735172, 0.1586068742775806, 1.2069538567880786, 1.288379128458855, 0.3211155068203249, -0.7231728066446282, -1.5423161776940397, -0.24328406478023104, -0.058782125724558744, -0.5376415776079112, 0.7918211969196326, -0.7386123897266031, 0.5983298227067237, 0.01045043472119773, 0.885422768442386, 1.2473599708971523, 0.9725353416658368, -0.9678598488870125, -0.2669871885626797, -0.6385976072813163, -0.08025199952965285, -0.7726323684778148, -0.6216426693856043, 1.3318931029643881, 2.0450300001879516, -0.7498673292634704, -1.1491091049266282, -1.2292252501772283, -0.8329038336387664, -1.0152488761707747, 0.2791365289114635, -0.4182635774507161, 0.5433588324518847, -0.04984782956398632, -2.191402871817153, 0.4415489206856965, -0.14569004928518778, 1.9378785370212808, 0.19160325647482745, -1.927339531109398, 0.1849111561603011, 1.21426550540817, -0.8179876804741391, -2.946735048844173, 1.9734055924410767, -1.1784589593604735, 0.6251563198447309, 0.7581622555228789, 1.3222587400371075, -0.40282195964444567, 1.319532248158295, -0.5702388491261489, 0.5687359186375752, 1.494065200588734, -1.1972743748434282, 0.023618986285261993, -0.612813545792576, 1.1503925495035328, -0.001953421663241388, 0.9165273324301312, 1.0948995704637923, -0.815925918492307, 0.48966573860737245, 2.4845506186195454, -0.01718528172169732, 0.723192384570609, 0.7997517831210738, 0.4119037518191069, -1.2182853780431468, -0.43443169347785393, 0.11287641241330279, -0.5248082146574473, 0.41047687528909477, -2.634597220091789, 2.2624677443610817, -0.7076106431279235, -0.27331109724650016, -0.5819622327872652, -0.7598103005763498, -1.5624406486865616, 0.31684264992443484, -1.6029777483663246, 1.2898294515481157, 0.8952139328564471, -0.48081780431977855, 0.22590621386189036, 1.936793804006686, -0.20302213014444284, -1.9009837797439162, 0.3416161011158697, 0.7327590247347948, -1.3916043061568637, 1.378241386207108, -0.8413067556621647, 1.5840971651404951, 0.8754185955708312, 0.7124724505109287, 1.1311202557119373, -0.08898831935042524, -0.6371141802614654, -0.39065965537993314, 0.6632149866441285, -1.0921939396253424, -0.9432480117928824, 0.345965061967102, 0.7590658779472681, 2.5272710956626847, 0.8030181302310712, -1.3334066724083906, 0.3181122649305336, -0.7422943075048537, -0.21412307160843688, 0.08784974570642495, 3.3618241009958667, -0.6556364734558401, 0.3121259916026504, 0.2696965864424966, -0.4855104276758153, -0.3571051863510908, 0.8699492405291713, -0.3830207818119806, 0.902893543065855, 1.3528782720430022, 0.8408903838231829, 0.3427033913204975, 0.24397110217597678, 0.007406933123988861, 0.7039363313686308, 1.0169293888699789, 0.5755136256993963, 0.1815923950533664, -0.38237584691122195, -0.7956251989842132, 1.199429316693524, 0.7111093224130057, 1.9352457353656898, 1.1087489633362453, -1.3540541309167313, -1.0116409174532826, 0.31600904902959154, 0.7580970165703146, 1.0229862395570575, -0.18572477633626303, 0.3021650542127885, -0.7019691296928933, 2.6452612367985253, 0.9123323905316016, -1.8375189446787137, 0.718104714712189, -0.7281752986534964, 0.20973084160022207, 0.3917735964214913, 0.5569892663506892, -1.19307035632016, -1.0922823050256405, -1.0184643752405889, -2.1602577619966197, -0.18424298947289733, 1.1202098757461192]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_6\", \"values\": [-0.04769379553383773, 0.5463420197237195, 0.4676261552268838, 0.11802454241287455, 0.20519719954344767, 0.38851854513388095, -2.3229204805085883, 0.6572042751910386, -0.1314633238767915, -0.15169687383193034, -1.5026555523024374, -0.9639443228880139, -0.8472347867449274, -0.4698972914878019, 1.9799532471884635, -1.786813547894634, -0.8835476440809772, -0.4831684089377292, 0.31787716329369187, 0.5580766477724949, 0.5669570241819346, 0.7735601233098038, 1.8381771511008944, -2.7715159019455213, 2.875407084167838, 0.5063455348365038, 0.4471307920951534, 1.4215375061410283, 0.5751932402120886, -0.3172867880442852, 0.7042061154351875, -0.5029695486715317, 0.5651870832030439, 0.47342373350797606, 0.20964265920052794, 1.0425624636710635, -1.3267499904424, 1.2913090444499844, 0.5553801973064323, 0.2956084284847234, -0.22411252065308057, 0.7890696195088082, 1.8999935242620853, -0.34423633532175085, 0.6135356899860015, -0.30254852108621005, 0.4699628417372513, -0.04335266976574829, -0.5744222830891649, -0.9177158873153979, -0.3269422740446668, -1.3451105459103725, -0.8762438840448299, -1.1744469163970277, -2.4119605592380835, -0.8612748250896476, -1.1382684458442163, 1.8193477004250713, 0.29559534164104606, 1.8438563369144987, -0.6619653426042805, -0.7380562068285055, -0.3667695492276817, 0.37408557908452506, -0.7323433689040327, 0.5752838152812588, 0.2521060453212587, -1.2621215545226978, 0.34774506193804244, 0.5563019965713158, -0.07270592176115938, 0.6677755208059822, -0.12800932561506342, -0.8731376620300265, -1.10212164573018, 0.025671847895038995, 0.2000771499105522, 1.1029478241365382, 1.2611035042223175, -0.5344844384000933, 0.6420962024500381, 0.01951994636462302, -1.785875266601463, 0.8853399885149625, -0.29627387766491226, -0.7354477264730162, 0.2739207290212548, -0.35841392024792496, 0.5004707501641297, 2.112038119578411, 0.9129461706539798, -1.465541994859071, -0.7818326200610406, 0.20516773075209244, 0.17898469266184505, 1.8526414596416578, 1.8696512826601235, -0.1159677908127217, -0.2734353908773789, 0.6541248514645798, 0.14416125531847426, 1.4386220298891288, 0.9983851914051454, 1.011863668391664, 1.230626281339983, -0.14081612197405874, -0.9601771629598183, -0.7834890446309057, -0.1467861116742286, -1.1308002715354957, -0.30711130962927435, -2.1050128341379932, -0.22144237164749925, 0.8787196583229098, 0.9157581456643027, -1.6218689115468106, 0.050821901661402144, -0.8116977794851924, -0.008225977307716384, 1.0120619903995216, -0.5797664379794828, -0.11707589945342323, 1.6930570150188378, 0.3666741319329507, 0.9930201283779082, -0.43445835353552126, 0.7649316819921471, 0.9059374351826726, -0.6923772737679448, 0.0368094944585161, -1.4940819702313162, 0.6675571756206438, -0.3337196670245106, 1.7194825591000913, -0.14730338285421452, -1.9312583338665201, 0.946658948383046, -1.492947741904387, -0.4646779821458032, 0.28715575943766897, 0.7351985008108147, 0.5624911201339952, 0.45503113875091544, 0.6169780764178863, -0.42972548466704397, -0.19289107378997686, -1.5435409329972802, -0.32364170293121913, -1.3934427753439635, -0.5379196565549684, 1.0447822084390745, 0.5246227416834399, 1.2869673832646797, -0.2904328477602229, 0.9030668886598575, -0.5899407822836976, 0.29154253272853253, 0.8516273214937469, -0.42755438855477274, 0.29847029004735703, -2.098922939044277, -0.6800326075006895, -1.3417610588814601, -0.06865924658299968, 0.9653457066070836, 1.6908441466607114, 0.9982663664637695, -0.4478822285573003, -1.2797634913079816, 0.8073253307787831, 0.8381972718473882, 0.9773248647315601, 1.4449945914747093, 1.2041079286780605, -1.316732626267015, 0.30035527629582054, -0.694608796407344, 0.5641172524319228, -0.826259963563332, 0.655878132413478, -1.1196148568158462, -0.8932045791379175, -1.3142899108722457, -1.7170038181958742, 0.2642184961507827, -1.6053335186980058, 0.2565668516885041, 1.6636161132099196, 2.923889814326307, 0.5102281940998316, -0.19967683414469758, -0.4751556770854654, -0.3385971566609334, -0.20816874200872704, -0.2427628358131128, 1.3658624113773312, -2.731514991985449, 0.1474449533308922, 0.18514440183846395, 1.6759799258578005, 0.25166892342104275, -0.6232495821242452, 1.7010396660622242, 1.3030188643178675, 0.9315271869282965, -0.45912724535963484, -0.23162849518473605, 1.0305415391485517, -0.8500646671758961, 0.40222338801085006, -2.2408144123652978, -0.9291698881372948, 1.360609408807994, 0.1674611330798351, -1.2967713132038303, 0.9132528649066977, 0.5834624909456212, -0.5612202740245854, 1.4956129460007601, -0.6604257402775511, -0.835620924787862, -0.24115049362829125, -0.5395518353435491, 0.4942806144010721, -0.5618358874139263, 1.3441878631534259, 1.6120670502612393, -0.6943713417610082, -0.9439742120949907, 0.9910747031708877, -0.1399939205413981, 1.635178417544828, 0.32810157521120875, 2.507350412649656, 0.10086984721040465, -0.6118168469039746, -0.013482164722325413, -0.18398097383272033, 0.24557615554329923, 0.8586594970367398, 1.046568046660053, -0.8164456439558676, -0.27707658534120455, 0.9171126710868479, -0.8917162944101128, 1.8184007640952422, -0.18253824648577643, 0.8039955978729901, -0.02357801687130223, -0.7812450495311218, 0.5062882618828147, -0.980736744985351, -0.30112376137015295, 0.5293714549548658, 0.275304207848606, 0.23219607459934063, 0.36910777803312506, 0.6220945725750022, 1.0703538564543853, 2.4853018173778785, 0.1763394740832864, 1.38507003552201, -0.24934495639184331, 0.41547538333547357, -0.18011621335355993, -0.555775556932023, 0.011781162666483849, -0.9814709003711152, 0.06126280513620301, 0.07897324935619757, 0.19237753690475573, 1.3242106065118453, 1.666517352632667, -1.652719410581778, 0.8509529960780368, 0.8088429948254042, -1.8522226144262515, 0.8903569998349266, -0.43706694343722746, 0.5465743990839083, -0.13167452961701007, -1.1172129279345213, -0.3616072816376641, -1.0807216756134617, -0.5792085934131613, -1.0852570778987076, -0.005000351400356386, 0.4281250895846457, -1.3548375208973433, -0.7853773579652518, 0.6400526523980676, -0.06128747016698382, 2.438654553263019, -0.4287651751270821, -1.4813652390254977, -0.11340007071971518, -0.2027321503997077, 0.2383441186560448, 1.03406259903471, 0.721318482637568, -1.1411772110075789, -0.15140482697690275, -0.4093104275146566, 0.8480838321572006, -0.4415739001188295, -0.8530031842131356, -2.200961376236249, 0.32191136182569924, -0.19322829763230304, 0.5773126675640069, 0.21836268398387731, 1.0937982829227921, -0.318093048288587, -0.3398132925467514, -0.4450002244053324, 1.7846131403991572, -1.9503161942861338, -0.22662728388644476, 0.5331317131721379, 0.10956716995051798, 0.18212279548208685, 0.8709881831798392, 0.2369831139887551, -0.809048919743597, 0.19445320347371287, 0.6301846775995595, 0.3595321648857749, -1.4473006253142007, -0.9016679090020281, -2.02512437865827, -0.7196116501907772, -0.3542373565777352, 0.5422042102518028, 0.28727943880626905, -0.7475033445843454, 2.3464012668053407, 0.8863671699592239, 1.1160690792836307, 0.7525240952400102, -0.0090314764086355, 1.5509531664409142, -0.7466556339918322, 0.8271712605988358, -1.1718834987066211, 0.17226894682947252, -0.7515562666183202, 0.681491931470759, -0.3851737714077857, -1.5695484712648908, -0.1990958924370463, -0.12767818234827014, -1.1015069265414743, -1.0997048750509408, 0.8072617422526847, -0.0818833263933724, 0.7320273061671132, -1.294625274036627, -0.2117384294273177, -1.1144623368695499, 0.8897924951806527, -1.490709172659491, 1.3509867792061356, -0.950706422794221, -0.6079884741731275, -1.2425485460604748, 1.0504934004475472, 0.002720096228006138, 1.3769434162559167, 0.8982337393812518, -0.24283244059441833, 0.6100088295042457, 0.49680385013756484, 0.7946529033483988, -0.5177136835759113, -0.8393096555794454, -1.0590200156154461, -0.036832321252329873, 0.6134696826142186, -1.4391398607712451, 0.3697566833203598, 0.4668568643145298, -0.5491363423681425, -0.28074747030398234, -0.16852516504337137, -0.4970372764585985, 1.5594886630241518, 2.4978789607941985, 0.1927923488192827, 1.408575281674293, -1.144649442740497, 1.2859020194354525, -0.0008651830280811372, 0.6800673919074853, 0.3769811970404386, 0.4079072348994288, -0.3859265683745716, 0.007224074132209852, -1.006993179304411, -0.12325684026772527, -0.6731126034138367, 1.7510936118741274, 1.7312213792866447, 0.6372750145279152, -0.341800329208035, -0.2638407262844876, 1.1757107953609705, 0.28845393840719774, 0.15461690720088747, 0.5289056088252195, 1.1484841929026286, -0.16451208377632862, -1.3494763104415435, -0.409397879866952, 1.1230858140762694, -1.093158981832457, -0.01837908312927601, -0.44073078335418536, -0.8966200167683269, -0.2031121893944126, -0.7401798354698986, -0.07187547794912186, 0.6123938692296697, 0.7496339663058029, -0.3453593933182259, 1.2160674788140746, -0.8139023169680148, 0.7754300348225573, 0.9921692907880718, 2.061538919667569, -0.9467342072793647, -0.8163976926505873, 0.23454166646719612, -1.2732144769348823, 1.013520241617292, 1.6532339877188849, 1.344529646716219, 0.5389215705275409, 2.7893143911708425, -0.5008487021882386, 0.9074213632766471, 1.3194139769764595, 0.8086131628178593, 0.6902709203745716, 0.46938538258604784, 1.299960028029964, -1.4810584893511065, 0.4101693752016903, 0.6071053088268347, -1.2074800847650735, -1.1943386449083593, -0.9951513127165506, 0.721849041557791, 1.3437773631739274, -0.9718086192386788, 0.20401612996359145, 1.8487561797440826, 1.0601041792993573, -0.669975351060281, 2.225728926140906, 0.7403344502798586, -1.3890740274329905, -0.3749595123822529, -0.011557622463577558, 1.0166652934146494, -1.3455012552702736, 0.17083722317652159, -1.8741635737553664, 1.2920972723143593, -1.935514831671231, -1.0428141308785739, -0.9853907331346788, -0.4044154044506552, -0.9694827617991181, -0.4510268743607808, -1.1382949313022588, -1.908897865970414, 1.1256818295199003, -0.7755247643892212, 0.08791624180555992, -0.35733483829469065, 0.3271977648423252, -0.9203828931763401, -1.4062074131214788, 0.873203448407205, -1.5074711960515526, 0.5956204210330197, 1.3744684619616911, 0.7915417561548086, 0.9335115303878954, 1.1837470040728537, 1.3404369604303605, 0.021275939343341405, 1.0844801303089326, -0.8323166917534655, -2.5243300771010118, 0.25354831440995346, -2.6724490545038337, -1.134732128443522, 0.612338795412884, -0.9062885504264098, 0.37227335671372874, -0.12717163717734717, 0.4391720041335564, 2.231211906478818, 0.44615068789290635, -0.2611184903767758, 0.56355960578449, -0.6405832029783267, 1.5139965465302878, -0.0806563085763698, -0.632977895528351, 0.26074181510490724, 0.8935578569732325, 0.7427849486474914, 0.7426476183161883, -1.6892171475163662, 0.655911770266151, 0.13076855865366876, 0.09799344573598771, -0.6921606910612231, 2.9983667983126003, 0.8003306386765334, -2.6466681998084116, 1.1837935196638576, 1.3544900707482421, -1.47758069331444, -2.032574586124968, -0.7538742652728354, 0.004293866583852042, -1.1620524501441158, -0.8150230643648297, 1.0718222284130319, 0.39876314922222744, -1.459574575982474, -0.07959644046779978, -0.020763044172798662, 0.3949213943280209, -0.38320702054447614, -0.8636213732315995, -0.6003521689311951, -1.2925742803574194, -0.6679329974499735, 0.4726528210223158, 0.35058379915294124, -0.3248121838598737, 1.4933254000385852, -1.4474436184141186, -1.510305423717113, -0.9599216525345134, -1.5133453202557277, 1.6486266774434213, 0.47520662720235796, 0.6853140283380482, 1.044204726768634, -0.14653267443925658, 0.09071374715105972, 0.34648626616480227, 0.4870588616673075, -0.28323942191855156, 1.5488044851592961, -0.21260685698686488, -0.787838470229386, 1.296546566209921, 1.1523134996892193, -0.6018762469228249, 1.8892940341008169, -0.1556608599137131, -0.06260739441823447, -1.1070893765017173, 1.6178249020303084, 0.8411801447143293, 0.9085597391291007, 0.7285252299106613, -0.18969593811191557, 0.5470453105563258, 0.08160583792103342, 0.8208986541968192, -0.9440368508424782, 1.7848202005538583, -2.5014110749113465, 0.6676515489923187, 0.5420275445294667, 1.9851535683608528, 0.46287393494687556, -0.439275927231159, 0.648935866268059, -1.138184324754107, 0.3697638996857895, 0.28393353797455817, 0.4011686691829512, -0.40233737964681926, -1.3548852228468278, 0.029151159328027136, 0.10394389849040224, 0.32467738312259803, -0.7895079423225287, 0.8630343002119933, -0.6967820911902749, -0.749521092691452, 1.9049270396535827, 0.4440888485004787, 0.8187552981942412, -0.1306590108117223, -0.9794149121183849, -1.0635815674654585, 0.5175150736456983, -1.2835745347131429, 0.069222789293332, -0.5816058252463723, 0.03414234836537308, 0.21823019151298773, -1.0862497272093323, -0.7314180131514403, 0.11787193334681406, -1.0505826633778192, 0.528495094997734, 0.07595180231429274, 0.021022465806477625, -0.5783700801030887, -0.7799449767210028, -0.43468884990166845, 0.5320219946431515, -0.9372017653476331, -0.581721383922355, -1.1753637456220491, -0.0919704410902134, 1.7396132788331415, 0.015296540875494992, -0.6121530971770988, -0.8194860486575583, 0.8267192580726824, -0.5633063268375919, -1.7872334240983048, -1.2364027366708599, 0.03828859194617906, -0.8565278956320546, -1.4839416746549527, 1.284006647241456, -1.942188022706172, -0.47082513037630214, -0.005550590044013654, 1.9151792473409635, -1.7097379711052645, 1.2901967081538734, 1.7530986830613096, 1.2771961511157521, 0.11149274625722039, -0.8785140854979265, -0.5605665783146334, -1.0837983743716229, 0.4245584017397853, -0.28555532946348505, -0.4633230859894077, -0.9432507812353753, -0.5468004902510937, -1.3130009081117258, 1.6336185017843894, 0.0249424180200715, 0.6422037614565216, -0.701031197315945, 0.5652878769213618, -0.7871423716913247, -1.8043296809187492, -1.2515905139800032, 0.4118033856542887, -2.140135895891123, 0.14399913909432818, -0.5993521725092749, 0.08895720407835261, 0.6773831579957935, -1.726594596611239, -0.10206787293745637, 1.1763612726532573, -2.735652050265017, -0.8295338072961004, 0.49908758476159626, 1.2214496693179104, 2.098876191857193, -0.7176937008817637, -1.9941904161920787, 0.3128285572442349, -0.013299101012656515, -0.5988426665084783, 0.2392654565334674, 0.21478417852294918, 0.8304036915388043, 0.17906265202737393, -1.3284098305520453, 1.1708507686459069, -0.015932641537222528, 3.1368389183721685, -0.3572363203543602, -0.5906431494916461, -2.698526126976382, 0.5065844703833859, -1.166359606394609, -0.27747960098628593, 0.4693760668669614, -0.19927255586473572, 0.3048587459931781, -0.5766833314901293, -2.1228912987529265, -1.8744871303136683, -0.4928906362066608, 1.2169466550498202, -1.1660383046273979, 1.4680088902231112, -0.4399597863697028, 1.6863963784008849, 1.1189867939079667, 0.010113367423624864, 0.18786325536942458, 1.1381390166008065, 1.7302442244529965, -0.9142970558179383, 0.2508664877704976, -0.3637952066381749, 1.924233825159472, 1.0455309042355192, 0.4518282988409614, 0.39406856701372506, -1.7797873929328873, 1.5056548250195219, 2.0483478941292783, -0.9345388299603762, -0.14046002877271213, 0.9660114821043375, -0.8232941701530145, 0.22825331791737669, 0.9642198949478106, 0.015899455814938276, -3.03381204973579, -0.40557478108958167, 1.148634636220901, -1.3938412974537027, 1.3612946581000545, -0.9700580977223383, -0.20800226239958272, 0.5615157606352349, -0.8858598387924591, -0.006141836160382404, 1.65363574136173, 0.08296170845328367, 0.80013511143598, 0.8766140457950855, 1.991168896066586, -0.16890692860419496, -0.24941180507826188, -0.8931634474506354, -0.2108129082398922, -0.7706656989410858, 0.888020044576502, 0.18011561270145335, -1.6204711503658638, -0.29450158070152027, -0.9040132072120387, -1.4326458298334728, 0.356149795815919, 0.7967110898159155, 0.4373823527409457, -0.8111808437591838, 0.4648242080421962, 0.9395577704169847, -1.2728556863085216, 0.45158469519269, 1.1533183950517099, 1.4495239600873746, -0.35773692738374224, -1.5133182486985, -0.6686147922906459, 0.8970797292130057, -1.0114566635190505, 3.2853247461374515, -1.1127520943784772, 0.06883107131255023, 2.6936363125909484, -1.4868565208373745, 0.7920161491209843, -1.1025556123008589, -1.3430715828899156, -0.2605711000194292, 0.08546950374423111, 0.8727594358925884, -0.33579329709502437, -0.1301083910552967, -1.2302473015843325, -1.0467779570171363, 0.34245487692918547, -0.9378630424939632, 0.14158537067775018, 0.847476342566827, -0.5243491338005796, 0.15890305350851044, 0.2607935973861832, -0.8898555622346541, -0.7897048320966524, 0.09282161655618715, 0.5647862506386107, 2.330371208021156, 0.33920213752110756, -1.1125114230282518, 0.1631987840482189, -0.5191964355688125, -1.2029664296853892, -1.5923801261803474, -1.3425786997441678, -0.26411321319804587, -0.011715199323443583, 0.29508283983016004, 1.4081232032342326, 1.0210986335960082, 1.7202054067542523, 0.43858805205890394, 0.7672552949206195, -1.0079074620130712, -0.23382372400125132, 0.4360713742223701, -0.2954997697465111, -2.187421414815786, 1.8926803759812638, 0.3159235461975027, -0.08097311333588318, -1.233952507929888, 0.9739474060523801, -0.06481291750336338, -0.5722532142999703, 0.1674472850205526, -0.6821045362523311, 0.21470238101682435, 1.7063683338096611, -1.271280103383442, -0.06648321396447363, -0.3774009208428883, 1.3038949138776543, 0.9477933355519496, -0.39902170695764044, 0.1405262335349004, 0.7138733474877755, -0.14992728082725887, -1.0019108507637586, -0.10337378997386099, -0.9884259654327416, 0.40830587854048606, -0.574466289100546, 0.25456764318116165, -1.994040234564442, 1.2075120119462028, 1.1203983049093003, -0.5785995021159402, -0.16438686120123477, 1.1008591845293714, -0.001873166523308204, -1.0287297001046347, -0.19017695284190342, 0.38765997498664534, 0.022917110506613936, -0.8496196230450596, -0.21892224585549933, 0.7340375039717534, -0.3899170442238336, 0.24745180959244706, -0.2769123066499149, -0.046893258312851835, -0.9421024322999244, -0.30609010057123665, -0.5345425901238918, 0.13687061077433382, 0.9723924814610282, 1.6581099706649962, -0.198215394003257, -1.0554761655885931, -0.3639160683464697, 1.3353028427853604, -1.3506279984155123, -1.4545651843120173, -1.116614383043988, -0.2994533757760429, 0.41676872422217964, -0.36535178423398856, -2.734347191769294, -0.09023976347968138, -0.3906523666736361, -0.5749318053016241, -0.7404297478505494, 0.1961755582126103, 0.009530409249141617, -1.3249196288618603, 0.01632817111265105, 1.1982134425222997, -0.7428571871612086, 1.217298811887792, -0.3636505845582056, 1.5135785688054566, -0.023743010511172044, 1.6735098212847275, -0.3643901429955321, -0.4532377659875166, -0.35383722517082816, 1.0290894497736356, 1.0764542674030957, 1.7555048492746366, -1.5990946824729102, 1.188918481043709, 2.0473148498831137, 2.175970817318189, -0.31364689084088443, -0.7538853352322457, -0.12933942588215488, 0.47644203887283715, -1.8734601553621684, -0.012589573190818869, -0.36195918701118973, 0.7564802998259685, 0.48000932109519256, 0.17128551238731238, 0.4790972738474192, 1.147035348136171, -0.20089263009722325, 0.4506056380703407, -0.7620624779446319, 2.3082390576251144, -2.065105125465948, -0.33398340430037343, 1.7514648673161157, -0.03211458499413244, 1.2284705698822114, 3.4814382352531648, 0.6681217498825877, -2.5237693110798074, 0.23596150299952764, 0.7313089306389201, -1.356960309042492, -1.4200873894057169, 1.0043809098669214, 0.8036026076994457, 0.45103539647957797, -1.3712423573936825, -1.0527270429336717, 0.668618825068349, 0.9284212613731162, 1.019048717384977, -1.1410977310767716, -1.005481261189813, 1.9182568740351782, 3.1616875164373655, -0.06276160508625096, 0.05585659319538629, 0.7981821765206534, 1.8707864521520348, -1.6111352696734813, 1.7870986438856824, -0.3555459000022802, 0.37960563099445244, 2.1408375338372987, 1.4890354561372567, -0.5654459621871367, 0.3305332454833233, 1.253249958948702, 0.0338833897484993, 1.4706677346991008, -0.5940490885938574, -2.1960147820486178, 0.1858256955598451, -1.8528572175918965, -0.54599869225063, 1.4561284317963767, -0.21425702936219868, -1.5507378812014643, 0.29862791838127783, -1.3414391629101365, 2.250512618906397, -0.7331790399637642, 0.47379706760007856, -0.5977726269513789, -1.13299330591756, 1.8413948715638566, -0.11332347396584189, 1.0113458305507763, -0.3320588025624986, 1.0218690712925058, -0.7924744633489536, 1.3391183451785433, 0.08538841005636671, 1.1872076046908506, -0.6633154915178724, 1.3212893214975892, 1.0658389997497666, -1.3656874013706042, -0.8019436524683082, 0.4156813752846481, -0.6486377573535971, 1.5288429559538843, -1.6996478062518285, -0.05455526817776899, -0.38320380209222615, -0.022776609658175073, 1.3396543841393063, -2.5015402790419516, -0.5566931848149241, 0.539747930735544]}, {\"axis\": {\"matches\": true}, \"label\": \"feat_7\", \"values\": [-0.16266849579123968, 0.09603163388560487, 0.7297732299564332, 0.23014090334456772, 2.337676200320384, 0.10436659055925014, 1.401455270512698, -0.11169042019743056, -0.7326899731182208, -0.38602874487099503, -0.4822186372153734, -1.0187020602859764, -0.01793826643931431, -3.0718863603453923, -0.8173862257745175, 0.05362474482781689, 0.07920781811480958, 0.1559369309334602, -0.43943007704547327, -0.15688375567310528, 1.8405623136049356, 0.05630386998544398, -1.1715877847769534, 1.7616171838833512, -0.09212332929743447, -0.4184576362151189, 1.2770444371008796, 1.1781327749305368, 1.8608659442792417, -0.5570224312153992, 0.9788140334432928, -0.28158661322006745, 1.9155661235865298, -0.26533804303971126, -1.1387718328422711, -0.2484333284253778, 0.8067451842445934, -1.6577685467187502, 0.2942577044165609, 0.06014467409516709, -1.8532234770422464, -0.6552293565837888, 1.2075366548599098, -1.2739165307571945, 0.22742909576931303, 0.27622049597274023, 0.2993319134720256, -0.5265258836178295, 1.0344956362494182, 1.2810548057664275, -0.6334822347077784, -0.04654120559599878, 1.4143107722702444, 0.8318710434738721, 0.20312279809637165, 3.051310168063931, -1.4525482659561861, -0.3593632107593513, -1.034643849167253, 0.330663123536583, 1.1097959951109162, 0.31957180234743154, -0.022093463629709494, -0.3931988873422712, -1.2917189577228652, -0.14190974981265983, -0.8613634841102131, -0.3043551839765265, -0.1505996322829362, 1.8913567139723333, -1.0387713491898924, -0.3932751926091746, 0.8042271061673694, 0.46883958851573987, 1.6052148853447417, 0.5887346650751129, -1.0527660197153261, -0.989759783953627, 1.044566388867515, -0.5087785043326518, -1.1257954994548875, -0.5017541747143792, -0.8861531330595657, 0.21018791673970885, -0.08719122823052661, -0.2675040963503141, 1.4441554269096897, 0.05797042594406116, -1.065520002026354, -1.291348665402917, -1.2261879747651616, -1.216762451930015, -0.7971930784750718, 0.19377931714461363, 1.2740021073059096, 1.3513012412045828, 0.3591960423898437, -0.42119090485602995, -0.23446343150675567, 0.2922226792352999, -1.953726739113605, -1.4940102325414022, -1.038247377095813, -0.08233719882124704, -0.03816293510526988, 2.3736148997447724, 2.0716564331443275, -0.9057033200378917, 0.9271233940093573, -1.2202780470243422, 0.14460384438593407, 0.8746034891108784, 0.4786448891725396, 1.469396295376725, -0.08992338970092226, -1.7489143292562177, -1.2381305084274714, -0.39020287092981754, -0.7314276502093685, 1.0666979850953555, -0.04979339957032038, 1.113521260808079, -1.2720951229266626, 0.4038443379273593, -0.5230551883633817, -0.3853391947429879, -0.45627155393767105, 0.28975165676167447, -0.8837730414343569, 0.20228866073831864, -0.11146100392157983, 0.64640315284244, 1.1885056238201726, -0.3072402007996777, -0.34593904859831753, -0.05895440271108902, -0.2923220264942798, -0.5662845867495243, 0.6678063680249551, 0.2610811266279709, 0.4823140157592449, -1.8649712203210538, -0.8915262561721934, -0.18387018857710505, 0.21344587789914676, 0.5143391516081627, 0.5594810570165213, -0.3014273592846137, 0.8929950724126482, -0.7669571830291315, -0.30305949004524846, -1.2801573850109018, 0.29808039657437946, 2.344026489445478, -0.49289140791788366, -0.9788677436879923, 0.8309802458441328, 0.690239704590763, 2.0784205731512113, -1.5897309407431852, 0.799819129562199, 0.5642593561743049, -1.854408180279297, 0.5009632278299231, -0.9888479653375645, 0.3347179026071935, 0.19422475122681548, 0.5348256873183445, -0.5094165460433028, -1.9249666953159505, 1.466581768364729, 0.9402474432957395, 0.8672116412195152, 1.3866702651723153, -0.37612055547244494, 1.0012621585691228, -0.32757600251317504, 0.2208923767799158, 1.2613575065569962, -0.9576683063730135, -0.716878577616342, -0.8900371660170463, -0.24133547073487488, -0.8213277875270222, 0.40331769288014435, -1.082049168232025, -0.9189420817219157, 0.2805663831988237, 1.7227675010519428, 0.14076661821222541, -0.6177439760126929, 1.048238676655948, 0.9915921826530089, -1.133324940197405, -1.776193069355845, -0.08919633942239219, -2.0619674847100478, -0.7029754806059297, 1.3709235069678138, -0.31760456919878655, 0.1970284919157901, 0.35389701011324487, 1.3909426709925876, -0.351415885814614, -0.09161161553744461, -0.5987001048906754, -0.60732412127907, -0.20571169813613024, 0.17347395683704084, -1.8132231631531004, 0.5446191590410906, -0.33645097664019824, 0.6117846278665373, 1.725041788578731, 1.083987536103135, -0.3647162326683174, 0.9019135476115289, 0.7925389889113587, 1.3850015567281677, 1.2394505074080906, -0.013834349656284347, 0.2852257039665399, 0.1599721589079849, -0.4841674443009833, 1.3871236633005077, -0.26823764810225925, -1.0587182415555196, 0.41641162614752675, 0.5707977688687317, 0.5448179775596561, 0.9201946281624027, 0.5517359449277409, -0.4947399310512053, 0.7666856453006171, 1.72408649781962, 0.5564179626241735, -0.7202613868562946, 0.45851978126021964, -0.42249992488522375, -1.5136495339459395, -1.844621006520785, 0.360160149767425, 0.9570249343961689, -0.11434083805973767, -0.11789006653893944, -0.2115421406979578, -0.5134931427119942, -0.9919383016140179, -1.1877661655835026, 1.0925179997845944, -2.0074790930506996, 0.3997946806840691, -1.2858597781592078, 0.6664169510079622, -2.586404442444338, -1.7575299105847815, 1.8339335859867794, -0.5501574777679303, 0.047418289492695255, -2.07888910342081, -0.636932176103708, 0.49244615556018567, 0.6883612237129786, -0.5934252755710502, 0.28805273062259645, -0.9802837192483153, 0.2253106710830193, 0.7767842452021999, 0.06628833705984956, -0.3436273280240903, -1.296924773012154, 0.8798938229167668, 0.986740475072575, 0.6223566431169605, -0.20682131762555886, 0.9139072520559075, -1.4963805330793862, -0.04305770319454621, 2.6288926714782077, 0.01933714931084205, 0.4086216062552902, 1.7330464554157046, 0.9056830217458585, -0.3640145538746714, 0.19110802439889435, 1.0398798594868015, -1.0885741235665827, 1.1497689285721264, -0.19678106026552072, 0.2592537182340809, 0.5522903094015935, -0.7016284613141456, 0.5223593067286753, 0.5241710518380884, -2.1019471846665896, -2.0826161256291797, -1.4441817295328703, 1.7381762044548654, 0.40112122969921155, 0.32390187178831625, 1.0911981167829392, 1.5974889067192954, -0.3348176013384537, 1.398547276520555, 0.9613255484670095, -0.062436591073446235, -0.07082231132725776, 1.0376363670101685, 1.8162411242253163, -0.5719493896591419, 2.04859102174006, 0.4218845896465345, -1.4509657989957148, 1.6150613193037215, 0.7791322923005204, 0.8174899286176419, -0.9983354336748196, -1.7845463461844058, -1.6866298271868827, -1.2851543397135194, -0.2795237893527495, -0.9926501941983531, -0.7175121160838517, 0.1405433518099321, -1.0346223572511732, 0.3396367596523373, 0.008545183990684484, 0.4743652693061947, 1.131057251630968, -0.20311593935976802, 1.8719093027956273, -0.6066527739437235, 1.789773177235759, -0.31778693092535326, -0.0030389502560518394, 0.820719499165528, 1.2429298367835344, -0.9036153319002915, 0.04887232397155368, -0.7796993945304145, -0.9788858072818317, 0.3306658031882289, 0.1917359516325261, -0.38225460590301685, 0.7112848336374631, 0.24350411354472268, 0.005671092758497066, -0.4117472073042297, 0.8078520092925516, 0.6542866797632896, -0.4068811043986224, -1.148813429021376, 0.5829902722931347, -0.8276907423747457, 0.1163316681278762, 2.230865224859991, -0.43773854008152624, 0.18137087466097773, -0.6012364608183699, 0.6558040553407254, -0.9966763673032326, -2.009067544445816, -0.3829204076155411, 1.08919395565892, -0.4739036453329165, -0.055069725458137396, 0.35078580940919024, 1.2610021998355798, 0.16966992454432242, 0.24332056850392986, -0.46974085467815213, -0.6038064218666737, 1.6971938061066716, 0.6860844419157323, 0.28563971787229187, 0.15774954284460097, 0.4849665196648699, -1.4658269579539933, 0.5599584998284617, 1.7352183844322353, -2.277576129792441, -0.30741825105342435, 0.8290697765546079, 0.9021692099424745, -0.7570936264967439, 0.50499385640675, -0.7646162406046556, 2.1842984655041295, -0.951258541245276, 0.8677872179939109, 0.029229945548466474, -0.2325508823154399, 1.3487788695444476, 1.1321956216975808, 0.8502192921440423, 0.6178150420765044, 0.13842948300535066, 0.9039743992055077, -0.15916603748257063, 0.6970264122501079, -0.6141936697166961, -1.8224084491961259, -1.438692194195327, -1.261852750764848, 0.8483421962957575, -1.0816872078483115, 0.14016476475829448, -0.9810759883827085, -0.5712487587126162, -0.6209160415843252, -0.23238643895090572, 0.5098991669613585, 1.124170080945884, 0.1130200325449216, -0.4235443579669525, -0.09147963092829967, 1.0797391998838517, 0.437503178204294, 0.08162596609144723, -0.6545411104718425, -1.1815705699972836, 1.1945979836924725, -0.518565761536276, 0.35013908375950414, -0.36467366367546405, -0.010010617830628572, 0.5627958926862242, -0.5217561023338622, 0.4156222058220673, -0.938823215123203, 0.8333241193404898, -0.6179815627894422, -0.3568678488141775, -0.07248311911729058, 0.7498519750763721, -1.2824093588317838, -0.9303675530459996, 0.548147480173588, -0.019242973979809452, -0.8194327002361139, 1.5475004338551466, -0.7776108229939698, 0.655846424807299, 1.1280938320542735, 0.771917093843507, 1.0766013681805615, -0.016455181732642717, -0.03836317685749117, 1.7601855972222138, 0.4892223002141603, -0.21326149957548782, -0.9256620187933255, 0.4957881966262054, -0.08213183029869234, 0.17783622696417584, 0.39451550022046694, 1.2247663047009403, -0.17160845510277362, 1.1399601747764017, 0.5036924142241074, 1.4501909302215656, -1.077391808429998, -0.7655526530792368, -2.602500340973897, -0.7421194944338998, -0.023575428644115094, -0.6719858817103618, 0.10016350082442303, 0.7922940721134913, -1.197434465869067, -1.5215369552369642, 0.7946382136298592, -0.49314094579254636, -0.03943694381444321, 0.7219725092180888, -0.587764675034779, -1.8839002200334978, -0.948420379574973, 0.035065455224925164, -1.0143405936099812, 1.2076819521009377, 0.2303426700707525, -0.255513475860274, 0.2774694381101839, 2.4836060210822244, -0.40978286208750475, 1.2515257749067945, -0.2704336045873858, 0.2594191741674034, -0.7043611637421805, 0.7389849395853818, -0.12596045448550247, 0.02118462704742743, 1.032558607586372, -0.4354280293376318, 0.4336333794458909, -0.46151006289614155, -0.45935135984883996, 1.532879699128985, 0.09695765737253183, -1.440732518762941, 0.303144998716885, -0.9780180275335874, -0.07300836897780452, 0.41264983083060613, -0.4708458358423194, 1.6882001009474323, -0.31740055156003916, -0.7318595588334713, -0.9303967274923312, -0.47452974016536414, 0.766620085367884, -0.1923524333221388, -1.2045313981661403, -0.27379448695902525, 1.179623768304698, -0.19473965404498228, 1.0383569030784805, -0.40513146139974177, -1.304822317265436, -0.14481927946334902, 0.568491171422424, -1.284715178993112, -0.1430396251566899, -0.2201897526185271, 1.867276732641105, 0.019892341521087264, 2.0185603443277005, -0.8262835183282143, -0.3321256540851761, 0.6576781569190379, 0.8179105763345957, 2.261187668495011, -0.5001692987925549, -1.3136383344522873, -1.7116050301015386, -0.7410689448468465, -0.7110886452040254, 0.6079015584548056, 0.8378146959202779, -0.14946077231769234, 0.5618941846919112, -0.8531833759859874, -1.1059777588442286, 0.01477936011333896, 1.793788916247397, -0.348429201833693, -0.6875936073102062, 0.47848759226371934, -0.7091337452376011, -0.8375152194639969, -0.16824024762133472, 0.1430426910683083, -1.180075314271088, -0.0371209400773056, -0.17197977821094038, -0.678808921359207, -0.34171467953938556, -0.1153235730063838, 0.8280393169489522, 1.6257787681652165, 0.145649692109763, 0.5315491232238166, -0.9361294855998096, 0.19969690136143867, -0.6764064703024858, -0.8337159362026817, 0.31895833707814675, -0.3316837181188093, 0.23072358095096177, 1.125279608149003, -0.2244788747657095, 0.721011911271716, 1.4840942990592452, -0.37266372611894677, -0.5678418591729818, -0.2701865175241138, 0.051232992427637215, 0.7817026599938411, -0.16976546543439683, -0.11184221234547187, 0.021536662266461122, 1.0565702149392502, 0.6664221474181677, 0.14351871777979913, 1.34021561659901, -1.7381040634500293, 0.18406674198484993, 0.935876075235535, 0.1474307021512572, 0.45859986267600444, -0.7983750812587833, 0.3071142211923183, -0.9679551443141585, 0.7627687057104702, -0.9264358319270986, -0.7262436202639176, 0.6400328942014355, 1.4763160557382207, -0.40835332200132884, -0.6688509386551793, -1.0314792608216992, 2.546248922547315, -1.6343974057615946, -0.9147392390915835, -0.06970427884249672, -0.38588827315672664, -0.6974630135711325, -0.8324992862406474, 0.674984292610568, 0.19086026274727713, 0.8187141596584646, -0.16026053627431167, -2.213314001710068, -1.548556585130585, 2.0623892283781253, 0.3398992490194896, 0.6227620883757119, -0.8465893461538708, 1.5599075832252232, 0.38541585361545466, 1.71837410922545, 1.3122119101610912, 1.9153332459048058, 0.1975783260822762, -0.9333176261423758, 1.4266939799861058, -1.2587930121592488, 0.9554058091416773, -0.11165949959370182, 0.18276787715550877, 0.5886210211440712, 0.547582815540806, 0.5507332421880804, -0.5912106564853485, -0.07414876672584808, -1.1680948446908952, -0.7637967472755832, -0.24747123225476503, 0.26429281922778924, -0.22990224544375465, 2.538446998457545, -0.8325855815539972, -0.5203350541579299, -0.6716873289013997, 0.7488134821401353, -1.6086766320757615, 1.7675349644462228, 0.43602466243186566, -0.7005331461372322, 1.938433028264903, -0.08890201971533913, 0.02523750091187912, 1.0899147698971317, -2.6183170948620273, 1.1753665035108216, -0.03670199822579259, -0.3797979132159196, 0.34590119057423585, 0.6228578014980419, 0.9312486269019673, 1.9770075742143083, -1.8380679989317803, 0.8864792452206344, 1.1043873223646343, -1.352516967045538, -1.2041931569895143, -1.023120028880942, -0.71539440808653, -0.3278739388682804, 1.610270524021313, -0.02380666240527598, 0.3029213690775917, 0.14752701829739165, -1.9661559641992818, -0.8060304173510432, -1.8781622663202644, 0.845239785007667, 0.49319459217015693, 0.8940291938608927, -0.4576341915170427, 1.2341958338456225, 0.13504202974298307, -0.9730882307359626, -0.5873320791687202, -0.15178666985443012, 1.1144850117720302, 0.8584171652592905, -0.9077657058711507, 0.39358561869906944, -0.4327373613299411, -0.15398095540832826, -0.21236361919942828, 1.2665340090594792, -0.005717631784211823, -1.3980031720870667, 0.8010118729809512, 0.9213411936124817, -0.9201066766225883, 0.814273556051481, -1.5263079666522832, -0.17437593507279361, -1.9258815070208133, 0.19903766973989934, 0.21310025661681242, 0.37917512831788497, 1.3073692604916811, -0.03843569602101582, 1.0468773158740952, 0.6141241107810171, -0.43113559478479774, 0.039910992797685736, 0.8355120853691789, -1.1114270811198126, -1.4969234723638827, -1.8823418355234758, 0.0022558149074000155, 1.066083415063095, 0.9798786471772329, -1.0744469729472617, -0.11172085069225891, 0.3438605313727391, 0.7867258925235969, -0.3265555887244541, 1.2909996075029002, 0.47913931292032286, -1.4286034611023002, 1.9691945141053553, 0.0856046257990176, -1.26666897365331, -0.20362254485993353, 1.9718005634676439, -1.0383313736734667, -0.09886378240645227, 0.10218253184510265, -0.6336451827767862, 1.082877838476231, -0.5766572516772381, 0.5464488128342954, 0.12836742326359774, 1.2170420172907424, 0.19253058304953985, -1.213049958183992, 0.1554751998597502, 0.24157794006698016, 1.3413292671170352, 0.8867618099733225, 0.5659974857144521, -1.265117578860857, -0.08446168406509567, 0.08948401100537838, -0.7156947172464794, -0.6808744930424097, -1.2447575041770798, -1.0534738185391412, -0.17921220886195927, -1.0661784926711724, -0.2627957492938266, 0.6372375710644165, -0.43670830265889854, 0.8450801600503322, 1.1158356797477593, -0.48239991927287884, -0.8060482487256075, 0.7230399765258049, 0.36766251792413346, 0.1512115361310905, -0.9578078349489181, -1.0552528963374863, 0.5068813376156645, -0.5815462250943327, 0.9235859625161599, 0.3757211185398901, -0.9729773097771779, -0.5617910516846015, -1.1789400291152485, 1.3558013179801727, -0.3700256676576659, 0.5578861605951837, -0.13885118961227286, -1.4379382052431031, -0.19206249328165056, -2.731729538148467, -0.37327986385654166, -0.7958215571262369, 0.5611066904713564, 0.036704104632423525, 0.07080527284198161, 0.5364854385392696, -1.0848937237165368, 0.18856917886969157, -0.06488852283114949, 0.1938445754687158, 0.9359577415385949, 0.1294670783859045, -0.9632664143308305, 0.20385015934859585, 1.182616516142021, 0.8129687637999687, -0.8541686677698668, 0.007146942577917483, -1.0603335888251137, -0.22216497098123886, 1.3460397088310923, -1.2617700094039062, 0.39846695192532694, -0.7784149754820482, 0.5082800368120594, -0.5750656736188959, -1.5304456950915724, -1.2048759217103824, -1.7983392784868193, -1.8323318918810694, -1.3749508250419948, 1.5281865357222206, 0.08843256183138169, 1.0233178994219625, 1.0685255300096455, -0.12425116111188454, 0.4288735527830994, 1.7403425741739023, 1.0491381679700198, 0.7192463522993867, -1.1304552086758854, 0.9147331556645331, -0.9655538479234294, -0.19458925063682536, -1.1079893859958116, 0.671811336022495, 2.8484442447620806, 0.41045724974504644, -1.6866262671273555, -0.5884241453722243, 0.9313881765011391, 0.3538713943359337, -0.001515244241677776, 0.941173251213125, -0.03742398239360633, 0.6232035184107456, -0.8812831065207983, 0.7129922929673599, -0.43307548377511595, -0.029215004405843164, 0.34789197963758417, -0.6166982030683088, 0.044238494319890895, -0.3130749073532369, -0.4692316347166426, 0.7032073692482234, -0.11016471537078117, 0.030836094060925055, 1.5846658906501518, -1.6016922815495676, -0.4809286864379164, 0.5583836191315054, 0.6081148510915628, -0.9206004650656939, -0.5392910139938344, -1.2869010759246067, 1.9129268589404373, 0.39793477408856254, 1.7692182222470927, 0.7256142405270173, -0.33397774118996887, -0.2868703291507022, 1.1450922893740092, -1.2856445399761418, -1.6032424632222688, -0.07537033513405164, -1.1828884813661158, 0.3131098261683686, 0.6236401497126719, 1.2476412801807386, -1.855198720860547, -0.5792441433455354, -1.9064307565785972, 0.01956388698142984, 0.034789426883004036, -0.6591411811069549, 1.1488689418340605, -1.7494033831533524, 0.2042074892339187, -0.26820163232147964, 0.4878489000562186, 0.6713674219555489, -1.126293236861961, 2.3544353274359113, 2.006242910629475, 1.3321166992119207, -0.29492918670318574, -0.08508855547051909, -0.4411957325600369, 0.8092603803155343, -1.193885325858727, -0.514852831201005, 0.7129512836554163, 1.9054616416478705, -0.06043636665318914, -1.6862339530200245, -0.29297036728001885, -0.6738762867670823, -2.333760223990757, 0.35022135783697206, -1.9166934487268303, 0.04566918440818755, 0.17472521061461688, 1.6545924157893235, 0.049088625448357216, 0.29078446323721374, -0.8143864729987267, -1.1102949704861587, -1.4912845387633984, 0.767219873197386, -0.028970063673241266, -0.34461101064281696, 0.4706924026016899, 0.09135126399506971, -0.17365988369633897, -0.6707737100009458, -0.36372523982440474, 1.3672502532136828, -0.676126737825251, 0.4037775161641336, -0.16119109387075453, 2.3299788259740963, 0.6321299533523241, -1.302983405575187, -0.880848928929222, 0.29407562530696824, -1.0111312700211446, -1.0913306910732277, -1.6840488951226442, 0.13155617498801725, -0.2982797785088582, 1.1893552073744509, -0.7023076246862762, -0.7183580193426404, 0.16111467725570625, -0.536724836965158, 0.7116103520917247, 1.0402060189336892, -0.47551074976122826, -0.6765966294696629, 0.5206191565288978, -3.2861591252218023, 1.238439849779226, 0.2614088544098757, -0.7953754817122635, -0.7518961592194568, -2.0979345514332866, 1.0023716242076448, 0.9223553568105607, 0.16641386029707905, 1.9702117373836496, 0.20154838159896757, -0.4244434638815197, 0.21196292781757362, 0.17208352698265889, 1.7308467595420138, -1.0287158709937156, 0.6118511644607215, -0.7278868632251517, 0.08113407908608572, -1.1520396619060789, 0.8180840364766153, -1.960016206746639, -0.3362435931614244, 0.5894343531065949, 0.6829803680908276, -0.6594263638034203, 1.0184893356510847, -0.007429350931879214, -0.5084242650517559, 0.8245175275743214, -0.21492137804945347, -2.0043144525815304, 1.8676516781145813, -2.5115132623797156, 1.1165492002632333, 0.06176488664236971, 1.090909083048983, 0.27284354515635273, -1.0660983116421607, -0.631328147811505, -0.23614262772841627, 0.21665160067260233, -1.031267691241939, 0.632674592489417, 0.643964516616654, -0.34006720010105557, -3.1350170509299464, 1.753103282663453, 0.5639535495683575, -0.7254026817496282, 0.3529094040848531, -0.6995953798052402, -0.3420643561175437, -0.9475000677669115, 0.03367009036572394, -1.0651922355289374]}], \"hoverlabel\": {\"namelength\": 0}, \"hovertemplate\": \"%{xaxis.title.text}=%{x}<br>%{yaxis.title.text}=%{y}\", \"legendgroup\": \"\", \"marker\": {\"color\": \"#636efa\", \"size\": 2, \"symbol\": \"circle\"}, \"name\": \"\", \"showlegend\": false, \"type\": \"splom\"}],\n", | |
" {\"dragmode\": \"select\", \"height\": 700, \"legend\": {\"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"width\": 900},\n", | |
" {\"responsive\": true}\n", | |
" ).then(function(){\n", | |
" \n", | |
"var gd = document.getElementById('c8d28eee-d0ba-43cc-bff0-9b06492a0857');\n", | |
"var x = new MutationObserver(function (mutations, observer) {{\n", | |
" var display = window.getComputedStyle(gd).display;\n", | |
" if (!display || display === 'none') {{\n", | |
" console.log([gd, 'removed!']);\n", | |
" Plotly.purge(gd);\n", | |
" observer.disconnect();\n", | |
" }}\n", | |
"}});\n", | |
"\n", | |
"// Listen for the removal of the full notebook cells\n", | |
"var notebookContainer = gd.closest('#notebook-container');\n", | |
"if (notebookContainer) {{\n", | |
" x.observe(notebookContainer, {childList: true});\n", | |
"}}\n", | |
"\n", | |
"// Listen for the clearing of the current output cell\n", | |
"var outputEl = gd.closest('.output');\n", | |
"if (outputEl) {{\n", | |
" x.observe(outputEl, {childList: true});\n", | |
"}}\n", | |
"\n", | |
" })\n", | |
" };\n", | |
" \n", | |
" </script>\n", | |
" </div>\n", | |
"</body>\n", | |
"</html>" | |
] | |
}, | |
"metadata": { | |
"tags": [] | |
} | |
} | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "ytlIbGY67RGU" | |
}, | |
"source": [ | |
"Include meaningless categorical features" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/", | |
"height": 422 | |
}, | |
"id": "uuPXgKUMoOCx", | |
"outputId": "f453a479-22d6-4173-85fe-417e6ca9050e" | |
}, | |
"source": [ | |
"states = [\"CA\", \"NY\", \"TX\"]\n", | |
"df[\"state\"] = random.choices(states, k=n_samples)\n", | |
"hour = [\"1\", \"2\"]\n", | |
"df[\"hour\"] = random.choices(hour, k=n_samples)\n", | |
"df.describe(include=\"all\")" | |
], | |
"execution_count": 9, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<style scoped>\n", | |
" .dataframe tbody tr th:only-of-type {\n", | |
" vertical-align: middle;\n", | |
" }\n", | |
"\n", | |
" .dataframe tbody tr th {\n", | |
" vertical-align: top;\n", | |
" }\n", | |
"\n", | |
" .dataframe thead th {\n", | |
" text-align: right;\n", | |
" }\n", | |
"</style>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>feat_0</th>\n", | |
" <th>feat_1</th>\n", | |
" <th>feat_2</th>\n", | |
" <th>feat_3</th>\n", | |
" <th>feat_4</th>\n", | |
" <th>feat_5</th>\n", | |
" <th>feat_6</th>\n", | |
" <th>feat_7</th>\n", | |
" <th>feat_8</th>\n", | |
" <th>feat_9</th>\n", | |
" <th>feat_10</th>\n", | |
" <th>feat_11</th>\n", | |
" <th>feat_12</th>\n", | |
" <th>feat_13</th>\n", | |
" <th>feat_14</th>\n", | |
" <th>feat_15</th>\n", | |
" <th>feat_16</th>\n", | |
" <th>feat_17</th>\n", | |
" <th>feat_18</th>\n", | |
" <th>feat_19</th>\n", | |
" <th>feat_20</th>\n", | |
" <th>feat_21</th>\n", | |
" <th>feat_22</th>\n", | |
" <th>feat_23</th>\n", | |
" <th>feat_24</th>\n", | |
" <th>feat_25</th>\n", | |
" <th>feat_26</th>\n", | |
" <th>feat_27</th>\n", | |
" <th>feat_28</th>\n", | |
" <th>feat_29</th>\n", | |
" <th>feat_30</th>\n", | |
" <th>feat_31</th>\n", | |
" <th>feat_32</th>\n", | |
" <th>feat_33</th>\n", | |
" <th>feat_34</th>\n", | |
" <th>feat_35</th>\n", | |
" <th>feat_36</th>\n", | |
" <th>feat_37</th>\n", | |
" <th>feat_38</th>\n", | |
" <th>feat_39</th>\n", | |
" <th>...</th>\n", | |
" <th>feat_63</th>\n", | |
" <th>feat_64</th>\n", | |
" <th>feat_65</th>\n", | |
" <th>feat_66</th>\n", | |
" <th>feat_67</th>\n", | |
" <th>feat_68</th>\n", | |
" <th>feat_69</th>\n", | |
" <th>feat_70</th>\n", | |
" <th>feat_71</th>\n", | |
" <th>feat_72</th>\n", | |
" <th>feat_73</th>\n", | |
" <th>feat_74</th>\n", | |
" <th>feat_75</th>\n", | |
" <th>feat_76</th>\n", | |
" <th>feat_77</th>\n", | |
" <th>feat_78</th>\n", | |
" <th>feat_79</th>\n", | |
" <th>feat_80</th>\n", | |
" <th>feat_81</th>\n", | |
" <th>feat_82</th>\n", | |
" <th>feat_83</th>\n", | |
" <th>feat_84</th>\n", | |
" <th>feat_85</th>\n", | |
" <th>feat_86</th>\n", | |
" <th>feat_87</th>\n", | |
" <th>feat_88</th>\n", | |
" <th>feat_89</th>\n", | |
" <th>feat_90</th>\n", | |
" <th>feat_91</th>\n", | |
" <th>feat_92</th>\n", | |
" <th>feat_93</th>\n", | |
" <th>feat_94</th>\n", | |
" <th>feat_95</th>\n", | |
" <th>feat_96</th>\n", | |
" <th>feat_97</th>\n", | |
" <th>feat_98</th>\n", | |
" <th>feat_99</th>\n", | |
" <th>label</th>\n", | |
" <th>state</th>\n", | |
" <th>hour</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>count</th>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>...</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000.000000</td>\n", | |
" <td>1000</td>\n", | |
" <td>1000</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>unique</th>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>...</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>3</td>\n", | |
" <td>2</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>top</th>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>...</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>CA</td>\n", | |
" <td>2</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>freq</th>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>...</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>371</td>\n", | |
" <td>525</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>mean</th>\n", | |
" <td>-0.019203</td>\n", | |
" <td>0.072811</td>\n", | |
" <td>0.034746</td>\n", | |
" <td>-0.097877</td>\n", | |
" <td>-0.011952</td>\n", | |
" <td>0.066686</td>\n", | |
" <td>0.030159</td>\n", | |
" <td>0.000189</td>\n", | |
" <td>0.002420</td>\n", | |
" <td>0.017563</td>\n", | |
" <td>0.006284</td>\n", | |
" <td>0.031366</td>\n", | |
" <td>-0.002748</td>\n", | |
" <td>0.010262</td>\n", | |
" <td>0.015054</td>\n", | |
" <td>0.015649</td>\n", | |
" <td>-0.017908</td>\n", | |
" <td>0.083927</td>\n", | |
" <td>0.038492</td>\n", | |
" <td>-0.005242</td>\n", | |
" <td>0.017566</td>\n", | |
" <td>-0.030901</td>\n", | |
" <td>-0.018557</td>\n", | |
" <td>-0.045484</td>\n", | |
" <td>0.006014</td>\n", | |
" <td>-0.048975</td>\n", | |
" <td>-0.011360</td>\n", | |
" <td>0.013926</td>\n", | |
" <td>0.007330</td>\n", | |
" <td>0.032466</td>\n", | |
" <td>0.014782</td>\n", | |
" <td>0.021690</td>\n", | |
" <td>0.021282</td>\n", | |
" <td>-0.024470</td>\n", | |
" <td>0.012764</td>\n", | |
" <td>-0.027039</td>\n", | |
" <td>-0.042040</td>\n", | |
" <td>0.029412</td>\n", | |
" <td>-0.004173</td>\n", | |
" <td>-0.003642</td>\n", | |
" <td>...</td>\n", | |
" <td>0.003166</td>\n", | |
" <td>-0.013486</td>\n", | |
" <td>-0.002757</td>\n", | |
" <td>0.081124</td>\n", | |
" <td>-0.004794</td>\n", | |
" <td>-0.053903</td>\n", | |
" <td>-0.002314</td>\n", | |
" <td>0.062766</td>\n", | |
" <td>0.074859</td>\n", | |
" <td>-0.072353</td>\n", | |
" <td>-0.048654</td>\n", | |
" <td>0.035699</td>\n", | |
" <td>-0.004792</td>\n", | |
" <td>-0.014287</td>\n", | |
" <td>0.000113</td>\n", | |
" <td>-0.069440</td>\n", | |
" <td>0.006885</td>\n", | |
" <td>-0.039721</td>\n", | |
" <td>0.011703</td>\n", | |
" <td>0.004805</td>\n", | |
" <td>0.061173</td>\n", | |
" <td>0.047362</td>\n", | |
" <td>0.040387</td>\n", | |
" <td>0.012096</td>\n", | |
" <td>0.013284</td>\n", | |
" <td>0.010094</td>\n", | |
" <td>0.010650</td>\n", | |
" <td>-0.017618</td>\n", | |
" <td>-0.017092</td>\n", | |
" <td>0.017875</td>\n", | |
" <td>-0.003053</td>\n", | |
" <td>0.017447</td>\n", | |
" <td>0.055891</td>\n", | |
" <td>-0.034754</td>\n", | |
" <td>0.013203</td>\n", | |
" <td>-0.008486</td>\n", | |
" <td>-0.028561</td>\n", | |
" <td>-0.693929</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>std</th>\n", | |
" <td>0.973870</td>\n", | |
" <td>1.004768</td>\n", | |
" <td>0.999862</td>\n", | |
" <td>1.007465</td>\n", | |
" <td>0.998945</td>\n", | |
" <td>1.031129</td>\n", | |
" <td>1.048829</td>\n", | |
" <td>0.985594</td>\n", | |
" <td>1.050631</td>\n", | |
" <td>1.013454</td>\n", | |
" <td>1.008945</td>\n", | |
" <td>0.975183</td>\n", | |
" <td>0.992397</td>\n", | |
" <td>0.985975</td>\n", | |
" <td>0.963173</td>\n", | |
" <td>1.034716</td>\n", | |
" <td>0.956639</td>\n", | |
" <td>0.929459</td>\n", | |
" <td>1.003659</td>\n", | |
" <td>0.991913</td>\n", | |
" <td>1.004515</td>\n", | |
" <td>1.000251</td>\n", | |
" <td>0.980971</td>\n", | |
" <td>1.020970</td>\n", | |
" <td>1.019893</td>\n", | |
" <td>1.009620</td>\n", | |
" <td>1.012069</td>\n", | |
" <td>0.998826</td>\n", | |
" <td>1.015051</td>\n", | |
" <td>0.980708</td>\n", | |
" <td>1.044498</td>\n", | |
" <td>0.973193</td>\n", | |
" <td>1.018589</td>\n", | |
" <td>0.990067</td>\n", | |
" <td>1.009618</td>\n", | |
" <td>0.958499</td>\n", | |
" <td>1.028147</td>\n", | |
" <td>0.965750</td>\n", | |
" <td>1.007875</td>\n", | |
" <td>1.032366</td>\n", | |
" <td>...</td>\n", | |
" <td>1.009747</td>\n", | |
" <td>1.005100</td>\n", | |
" <td>0.962815</td>\n", | |
" <td>1.052184</td>\n", | |
" <td>0.971594</td>\n", | |
" <td>0.990236</td>\n", | |
" <td>1.010134</td>\n", | |
" <td>1.018775</td>\n", | |
" <td>1.009757</td>\n", | |
" <td>0.970031</td>\n", | |
" <td>0.997735</td>\n", | |
" <td>0.955657</td>\n", | |
" <td>1.003400</td>\n", | |
" <td>0.993153</td>\n", | |
" <td>1.030896</td>\n", | |
" <td>0.969546</td>\n", | |
" <td>1.004345</td>\n", | |
" <td>0.975442</td>\n", | |
" <td>0.976086</td>\n", | |
" <td>0.984694</td>\n", | |
" <td>0.987340</td>\n", | |
" <td>0.977618</td>\n", | |
" <td>1.021386</td>\n", | |
" <td>0.992606</td>\n", | |
" <td>1.019135</td>\n", | |
" <td>0.996453</td>\n", | |
" <td>0.996129</td>\n", | |
" <td>1.021785</td>\n", | |
" <td>1.037741</td>\n", | |
" <td>1.028137</td>\n", | |
" <td>0.978914</td>\n", | |
" <td>1.018245</td>\n", | |
" <td>1.042289</td>\n", | |
" <td>1.003997</td>\n", | |
" <td>0.991046</td>\n", | |
" <td>0.995290</td>\n", | |
" <td>0.995240</td>\n", | |
" <td>156.795949</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>min</th>\n", | |
" <td>-2.765573</td>\n", | |
" <td>-2.731727</td>\n", | |
" <td>-2.846354</td>\n", | |
" <td>-3.033817</td>\n", | |
" <td>-2.848870</td>\n", | |
" <td>-3.315968</td>\n", | |
" <td>-3.033812</td>\n", | |
" <td>-3.286159</td>\n", | |
" <td>-3.054974</td>\n", | |
" <td>-2.991715</td>\n", | |
" <td>-3.027087</td>\n", | |
" <td>-2.849216</td>\n", | |
" <td>-3.058706</td>\n", | |
" <td>-3.838618</td>\n", | |
" <td>-2.782878</td>\n", | |
" <td>-3.665172</td>\n", | |
" <td>-3.711044</td>\n", | |
" <td>-2.769722</td>\n", | |
" <td>-3.587558</td>\n", | |
" <td>-3.183253</td>\n", | |
" <td>-3.352504</td>\n", | |
" <td>-3.310045</td>\n", | |
" <td>-2.600647</td>\n", | |
" <td>-3.469872</td>\n", | |
" <td>-3.204222</td>\n", | |
" <td>-2.915251</td>\n", | |
" <td>-2.884871</td>\n", | |
" <td>-3.663712</td>\n", | |
" <td>-2.929196</td>\n", | |
" <td>-3.483136</td>\n", | |
" <td>-3.509528</td>\n", | |
" <td>-3.102396</td>\n", | |
" <td>-3.193426</td>\n", | |
" <td>-2.658238</td>\n", | |
" <td>-2.812689</td>\n", | |
" <td>-2.972708</td>\n", | |
" <td>-3.535813</td>\n", | |
" <td>-3.205097</td>\n", | |
" <td>-3.539630</td>\n", | |
" <td>-3.278193</td>\n", | |
" <td>...</td>\n", | |
" <td>-4.020972</td>\n", | |
" <td>-3.135617</td>\n", | |
" <td>-3.496491</td>\n", | |
" <td>-3.720986</td>\n", | |
" <td>-3.453112</td>\n", | |
" <td>-3.493723</td>\n", | |
" <td>-3.190831</td>\n", | |
" <td>-2.975431</td>\n", | |
" <td>-3.349800</td>\n", | |
" <td>-3.449818</td>\n", | |
" <td>-3.261018</td>\n", | |
" <td>-3.328669</td>\n", | |
" <td>-3.197572</td>\n", | |
" <td>-3.133965</td>\n", | |
" <td>-2.913934</td>\n", | |
" <td>-3.480351</td>\n", | |
" <td>-3.196015</td>\n", | |
" <td>-4.649858</td>\n", | |
" <td>-2.795095</td>\n", | |
" <td>-3.212514</td>\n", | |
" <td>-2.777956</td>\n", | |
" <td>-3.558587</td>\n", | |
" <td>-3.486024</td>\n", | |
" <td>-3.088846</td>\n", | |
" <td>-3.052082</td>\n", | |
" <td>-2.798971</td>\n", | |
" <td>-2.848340</td>\n", | |
" <td>-3.539618</td>\n", | |
" <td>-3.340491</td>\n", | |
" <td>-2.974426</td>\n", | |
" <td>-3.196331</td>\n", | |
" <td>-3.280777</td>\n", | |
" <td>-3.427735</td>\n", | |
" <td>-3.194310</td>\n", | |
" <td>-2.827028</td>\n", | |
" <td>-3.098474</td>\n", | |
" <td>-2.897833</td>\n", | |
" <td>-552.197622</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25%</th>\n", | |
" <td>-0.676321</td>\n", | |
" <td>-0.629661</td>\n", | |
" <td>-0.680625</td>\n", | |
" <td>-0.807015</td>\n", | |
" <td>-0.664607</td>\n", | |
" <td>-0.671336</td>\n", | |
" <td>-0.718173</td>\n", | |
" <td>-0.676454</td>\n", | |
" <td>-0.705811</td>\n", | |
" <td>-0.650574</td>\n", | |
" <td>-0.693801</td>\n", | |
" <td>-0.589354</td>\n", | |
" <td>-0.643861</td>\n", | |
" <td>-0.679057</td>\n", | |
" <td>-0.640994</td>\n", | |
" <td>-0.673618</td>\n", | |
" <td>-0.646520</td>\n", | |
" <td>-0.579014</td>\n", | |
" <td>-0.663780</td>\n", | |
" <td>-0.684801</td>\n", | |
" <td>-0.667897</td>\n", | |
" <td>-0.731198</td>\n", | |
" <td>-0.674951</td>\n", | |
" <td>-0.753102</td>\n", | |
" <td>-0.686039</td>\n", | |
" <td>-0.748897</td>\n", | |
" <td>-0.735551</td>\n", | |
" <td>-0.614446</td>\n", | |
" <td>-0.638776</td>\n", | |
" <td>-0.648189</td>\n", | |
" <td>-0.652329</td>\n", | |
" <td>-0.616909</td>\n", | |
" <td>-0.632700</td>\n", | |
" <td>-0.717579</td>\n", | |
" <td>-0.697392</td>\n", | |
" <td>-0.671472</td>\n", | |
" <td>-0.733369</td>\n", | |
" <td>-0.578196</td>\n", | |
" <td>-0.699989</td>\n", | |
" <td>-0.686083</td>\n", | |
" <td>...</td>\n", | |
" <td>-0.704584</td>\n", | |
" <td>-0.701404</td>\n", | |
" <td>-0.686563</td>\n", | |
" <td>-0.602587</td>\n", | |
" <td>-0.643403</td>\n", | |
" <td>-0.684945</td>\n", | |
" <td>-0.640580</td>\n", | |
" <td>-0.638519</td>\n", | |
" <td>-0.616474</td>\n", | |
" <td>-0.765868</td>\n", | |
" <td>-0.747456</td>\n", | |
" <td>-0.569431</td>\n", | |
" <td>-0.662788</td>\n", | |
" <td>-0.686248</td>\n", | |
" <td>-0.682736</td>\n", | |
" <td>-0.745134</td>\n", | |
" <td>-0.656286</td>\n", | |
" <td>-0.665905</td>\n", | |
" <td>-0.661333</td>\n", | |
" <td>-0.643449</td>\n", | |
" <td>-0.585665</td>\n", | |
" <td>-0.612435</td>\n", | |
" <td>-0.686181</td>\n", | |
" <td>-0.660987</td>\n", | |
" <td>-0.652181</td>\n", | |
" <td>-0.699866</td>\n", | |
" <td>-0.630471</td>\n", | |
" <td>-0.686378</td>\n", | |
" <td>-0.697847</td>\n", | |
" <td>-0.661811</td>\n", | |
" <td>-0.662083</td>\n", | |
" <td>-0.632202</td>\n", | |
" <td>-0.618930</td>\n", | |
" <td>-0.731618</td>\n", | |
" <td>-0.676630</td>\n", | |
" <td>-0.668744</td>\n", | |
" <td>-0.689677</td>\n", | |
" <td>-98.326307</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>50%</th>\n", | |
" <td>-0.038091</td>\n", | |
" <td>0.095016</td>\n", | |
" <td>0.029457</td>\n", | |
" <td>-0.073810</td>\n", | |
" <td>-0.004831</td>\n", | |
" <td>0.078501</td>\n", | |
" <td>0.009822</td>\n", | |
" <td>-0.008720</td>\n", | |
" <td>0.011434</td>\n", | |
" <td>-0.008726</td>\n", | |
" <td>-0.001878</td>\n", | |
" <td>0.014341</td>\n", | |
" <td>0.033412</td>\n", | |
" <td>0.006637</td>\n", | |
" <td>0.052220</td>\n", | |
" <td>-0.010368</td>\n", | |
" <td>-0.014754</td>\n", | |
" <td>0.067721</td>\n", | |
" <td>0.035848</td>\n", | |
" <td>-0.013227</td>\n", | |
" <td>0.005184</td>\n", | |
" <td>-0.073271</td>\n", | |
" <td>-0.026870</td>\n", | |
" <td>-0.058872</td>\n", | |
" <td>0.019228</td>\n", | |
" <td>-0.041615</td>\n", | |
" <td>-0.006941</td>\n", | |
" <td>0.052769</td>\n", | |