Skip to content

Instantly share code, notes, and snippets.

@iwatobipen
Created May 22, 2023 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwatobipen/c4b6b0f8e4ec29f37de231dbd43d0e33 to your computer and use it in GitHub Desktop.
Save iwatobipen/c4b6b0f8e4ec29f37de231dbd43d0e33 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "b63e70c8",
"metadata": {},
"outputs": [],
"source": [
"#!wget https://raw.githubusercontent.com/rdkit/rdkit/master/Docs/Book/data/solubility.train.sdf\n",
"#!wget https://raw.githubusercontent.com/rdkit/rdkit/master/Docs/Book/data/solubility.test.sdf\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "942ca0a6",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/iwatobipen/miniconda3/envs/chemenv1/lib/python3.9/site-packages/skl2onnx/algebra/onnx_ops.py:159: UserWarning: OpSchema.FormalParameter.typeStr is deprecated and will be removed in 1.16. Use OpSchema.FormalParameter.type_str instead.\n",
" tys = obj.typeStr or ''\n",
"/home/iwatobipen/miniconda3/envs/chemenv1/lib/python3.9/site-packages/skl2onnx/algebra/automation.py:154: UserWarning: OpSchema.FormalParameter.isHomogeneous is deprecated and will be removed in 1.16. Use OpSchema.FormalParameter.is_homogeneous instead.\n",
" if getattr(obj, 'isHomogeneous', False):\n",
"/home/iwatobipen/miniconda3/envs/chemenv1/lib/python3.9/site-packages/jinja2/environment.py:485: UserWarning: OpSchema.FormalParameter.typeStr is deprecated and will be removed in 1.16. Use OpSchema.FormalParameter.type_str instead.\n",
" return getattr(obj, attribute)\n"
]
}
],
"source": [
"from falcon import AutoML\n",
"from rdkit import Chem\n",
"from rdkit.Chem import PandasTools\n",
"from rdkit.Chem import rdFingerprintGenerator\n",
"from rdkit.Chem import DataStructs\n",
"from useful_rdkit_utils import mol2numpy_fp\n",
"import pandas as pd\n",
"import numpy as np\n",
"from plotly import express as px"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "113252a6",
"metadata": {},
"outputs": [],
"source": [
"train = [m for m in Chem.SDMolSupplier('./solubility.train.sdf')]\n",
"test = [m for m in Chem.SDMolSupplier('./solubility.test.sdf')]"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "e46b4b30",
"metadata": {},
"outputs": [],
"source": [
"train_data = pd.DataFrame([mol2numpy_fp(m) for m in train])\n",
"train_data.columns = [f'fp_{idx:02}' for idx in range(2048)]\n",
"trainY = [float(m.GetProp('SOL')) for m in train]\n",
"test_data = pd.DataFrame([mol2numpy_fp(m) for m in test])\n",
"test_data.columns = [f'fp_{idx:02}' for idx in range(2048)]\n",
"testY = [float(m.GetProp('SOL')) for m in test]"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "fb704efe",
"metadata": {},
"outputs": [],
"source": [
"train_data['sol'] = trainY\n",
"test_data['sol'] = testY"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "0dfd6b67",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Initializing a new TabularTaskManager for task `tabular_regression`\n",
"<class 'pandas.core.frame.DataFrame'>\n",
"Beginning training\n",
"Beginning the main training phase\n",
"Fitting the pipeline...\n",
"Fitting stacked model... \n",
"Setting up learner config [mid dataset]\n",
"\t -> Filtering base classifiers:\n",
"\t\t-> ElasticNet base score: 0.499997007400399\n",
"\t\t-> DecisionTreeRegressor base score: 0.733596268053291\n",
"\t\t-> HistGradientBoostingRegressor_150 base score: 0.8357948560555432\n",
"\t\t-> HistGradientBoostingRegressor base score: 0.8288608503403038\n",
"\t\t-> HistGradientBoostingRegressor_50 base score: 0.8087376620109533\n",
"\t\t-> GradientBoostingRegressor_100 base score: 0.7981725022964659\n",
"\t\t-> AdaBoostRegressor_50 base score: 0.6947513173311912\n",
"\t\t-> BaggingRegressor_10 base score: 0.7934126759222989\n",
"\t\t-> RandomForestRegressor_100 base score: 0.8190979497881101\n",
"\t\t-> ExtraTreesRegressor_100 base score: 0.747809611112622\n",
"\t\t-> GradientBoostingRegressor_10 base score: 0.661199212169705\n",
"\t\t-> GradientBoostingRegressor_25 base score: 0.7299198471122101\n",
"\t\t-> GradientBoostingRegressor_50 base score: 0.7652685557397417\n",
"\t\t-> AdaBoostRegressor_25 base score: 0.6800358185731886\n",
"\t\t-> AdaBoostRegressor_100 base score: 0.6803522173108106\n",
"\t\t-> BaggingRegressor_25 base score: 0.8196437525311552\n",
"\t\t-> BaggingRegressor_50 base score: 0.8154351237878447\n",
"\t\t-> BaggingRegressor_100 base score: 0.8198316432718461\n",
"\t\t-> RandomForestRegressor_10 base score: 0.8167106972898754\n",
"\t\t-> RandomForestRegressor_25 base score: 0.8210989851976792\n",
"\t\t-> RandomForestRegressor_50 base score: 0.8180512134998708\n",
"\t\t-> ExtraTreesRegressor_10 base score: 0.7462493176569327\n",
"\t\t-> ExtraTreesRegressor_25 base score: 0.747671347332109\n",
"\t\t-> ExtraTreesRegressor_50 base score: 0.7480761670307334\n",
"\t -> Fitting the final estimator\n",
"Finished training\n",
"The evaluation report will be provided here\n",
"<class 'pandas.core.frame.DataFrame'>\n",
"\n",
" N_SAMPLES R2 RMSE MSE MAE RMSLE SCORE \\\n",
"train 1025 0.897913 0.651276 0.424160 0.492969 -0.428822 0.897913 \n",
"test 257 0.713126 1.079622 1.165584 0.819909 0.076611 0.713126 \n",
"\n",
" SC_SCORE \n",
"train 0.948956 \n",
"test 0.856563 \n",
"\n",
"Saving the model ...\n",
"Serializing to onnx...\n",
"\t -> Merging step 1 ::: io_map [('falcon-pl-0/transformed_column', 'falcon-pl-1/model_input')] ::: outputs: ['falcon-pl-1/variable']\n",
"Serialization completed.\n",
"The model was saved as `falcon_20230522.212221.onnx`\n"
]
}
],
"source": [
"manager = AutoML(task = 'tabular_regression', train_data = train_data, test_data = test_data, features = [f'fp_{idx:02}' for idx in range(2048)], target = 'sol')\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "e17fcbbe",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
" N_SAMPLES R2 RMSE MSE MAE RMSLE SCORE \\\n",
"train 1025 0.897913 0.651276 0.42416 0.492969 -0.428822 0.897913 \n",
"\n",
" SC_SCORE \n",
"train 0.948956 \n",
"\n",
"{'train': {'N_SAMPLES': 1025, 'R2': 0.897912796728474, 'RMSE': 0.6512759179568169, 'MSE': 0.4241603213104946, 'MAE': 0.4929689272351379, 'RMSLE': -0.42882173591515665, 'SCORE': 0.897912796728474, 'SC_SCORE': 0.9489563983642371}}\n"
]
}
],
"source": [
"print(manager.performance_summary())"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "ac6a5db2",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"falcon_20230522.212221.onnx solubility.train.sdf\r\n",
"solubility.test.sdf\t Untitled.ipynb\r\n"
]
}
],
"source": [
"!ls"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "bc85cda1",
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<rdkit.Chem.rdchem.Mol at 0x7fe1e83d5fa0>"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"mol1 = Chem.MolFromSmiles('CC1CCCCC1')\n",
"mol2 = Chem.MolFromSmiles('OCC1CC(O)C(O)CC1')\n",
"mol2 = Chem.MolFromSmiles('CC(=O)CCCC')\n",
"mol2"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "a0f4edf0",
"metadata": {},
"outputs": [],
"source": [
"fp1 = mol2numpy_fp(mol1)\n",
"fp2 = mol2numpy_fp(mol2)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "5a282d47",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([-4.1317964, -1.3657508], dtype=float32)"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"manager.predict([fp1,fp2])"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "49f78039",
"metadata": {},
"outputs": [],
"source": [
"train_X = pd.DataFrame([mol2numpy_fp(m) for m in train])\n",
"pred_train = manager.predict(train_X)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "e2f4ef1b",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "x=%{x}<br>y=%{y}<extra></extra>",
"legendgroup": "",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "",
"showlegend": false,
"type": "scattergl",
"x": [
-3.18,
-2.64,
-3.84,
-3.74,
-3.55,
-3.1,
-3.3,
-4.53,
-3.85,
-5.24,
-3.52,
-4.15,
-2.54,
-2.1,
-3.23,
-3.24,
-3.82,
-3.27,
-4.44,
-5.05,
-2.68,
-2.03,
-1.87,
-1.97,
-4,
-1.64,
-2.36,
-3.01,
-4.24,
-1.64,
-2.21,
-2.8,
-2.77,
-2.82,
-3.37,
-3.31,
-3.2,
-3.21,
-3.11,
-3.27,
-4.06,
-3.75,
-3.77,
-3.66,
-3.89,
-4,
-4.64,
-4.15,
-2.82,
-4.31,
-4.17,
-4.91,
-5.22,
-3.6,
-3.77,
-3.7,
-4.29,
-4.74,
-4.72,
-3.96,
-4.14,
-4.89,
-4.63,
-4.92,
-5.26,
-5.89,
-6.96,
-6.19,
-6,
-5.96,
-6.68,
-8.04,
-6.74,
-8.19,
-7.02,
-7.8,
-8.8,
-9.03,
-4.97,
-4.38,
-7.42,
-5.17,
-6.89,
-8.23,
-8,
-8.49,
-8.66,
-1,
-0.63,
-0.89,
-1.17,
-1.54,
-1.9,
-1.91,
-3.14,
-1.09,
-1.6,
-1.29,
-1.32,
-1.68,
-2,
-1.48,
-2.18,
-2.6,
-3.04,
-3.67,
-1.41,
-1.73,
-1.59,
-2.29,
-1.62,
-1.6,
-1.85,
-2.08,
-2.38,
-1.92,
-2.03,
-1.96,
-2.96,
-2,
-2.43,
-2.4,
-2.73,
-2.63,
-2.63,
-2.51,
-2.69,
-3.12,
-3.07,
-3.81,
-2.3,
-1.71,
-3.12,
-4.59,
-3.99,
-4.81,
-1.64,
-1.3,
-3.22,
-1.96,
-2.54,
-1.36,
-6.29,
-7.33,
-6.18,
-1.5,
-5.18,
-4.23,
-1.8,
-2.38,
-3.13,
-3.27,
-3.05,
-3.04,
-3.21,
-3.63,
-4.07,
-3.5,
-3.59,
-4,
-4.48,
-5.04,
-2.31,
-2.38,
-4.63,
-4.57,
-2.78,
-3.19,
-2.54,
-1.97,
-3.52,
-3.52,
-2.39,
-3.08,
-4.54,
-4.88,
-6.56,
-5.27,
-5.8,
-6.39,
-5.25,
-5.21,
-6.27,
-6.25,
-6.14,
-6.01,
-6.26,
-6.21,
-6.29,
-7.28,
-7.8,
-6.47,
-6.57,
-7,
-7.39,
-7.25,
-6.51,
-7.05,
-7.32,
-7.39,
-7.21,
-7.43,
-8.56,
-8.65,
-8.6,
-8.32,
-7.42,
-8.71,
-7.82,
-7.66,
-8.42,
-7.92,
-8.3,
-8.94,
-9.16,
-10.26,
-10.41,
-11.62,
-6.9,
-4.14,
-3.93,
-4.35,
0,
0.43,
0.04,
-0.6,
-0.24,
0.08,
-0.47,
-0.52,
-0.2,
-1.24,
-0.8,
-0.89,
-0.7,
-0.8,
-0.49,
-1.11,
-1.04,
-0.5,
-1.17,
-0.72,
-0.38,
-0.41,
-0.44,
-1.81,
-1.47,
-1.4,
-0.92,
-1.52,
-1.55,
-1.38,
-1.08,
-1.15,
-1,
-0.89,
-0.85,
-0.85,
-2.39,
-2.09,
-2.11,
-1.72,
-1.27,
-1.72,
-0.74,
-2.55,
-4.67,
-1.38,
-0.71,
-3.01,
-0.88,
-2.1,
0,
0.81,
-0.17,
-0.62,
-0.4,
-0.7,
-0.29,
-0.92,
-1.19,
-1.4,
-2.41,
-3.48,
-2.82,
-2.22,
-2.92,
-1.36,
-2.39,
0.58,
-0.85,
-1.3,
-1.7,
-2.36,
0.57,
0.32,
-1.19,
-1.63,
0.52,
-0.19,
-0.8,
-1.42,
-1.42,
-1.3,
-2.05,
-2.59,
-0.83,
-1.06,
-1.33,
-1.83,
0.22,
-3.31,
-4.43,
-1.28,
-5.19,
1.22,
0.38,
-0.19,
1,
-1.06,
-0.82,
-2.3,
-4.62,
0.01,
-1.77,
-1.55,
-2.6,
-2.06,
-0.89,
-2.11,
-6.81,
-2.21,
-1.84,
0.28,
-2.07,
-0.81,
-1.86,
-1.45,
-1.1,
-3.55,
-3.4,
-1.68,
-1.47,
-0.48,
0.58,
0.52,
-0.04,
-0.49,
-0.14,
-0.72,
-0.82,
-1.01,
-0.55,
-1.24,
-1.36,
-1.21,
-0.82,
-1.89,
-2,
-1.75,
-1.92,
-2.46,
-3.39,
-2.71,
-0.6,
-3.39,
-4.1,
-0.22,
-0.74,
-0.8,
-2.32,
-1.66,
-2.67,
-2.35,
-4.66,
-6.96,
-5.64,
0.48,
-0.39,
-0.06,
-0.99,
-0.66,
-0.55,
-0.03,
-1.62,
-1.1,
-0.77,
-0.43,
-1.85,
-0.85,
-3.96,
-5.31,
-4.85,
-0.59,
0.56,
0.11,
-0.82,
-4.6,
0.51,
0.74,
0.64,
-3.11,
-3.64,
-4.3,
-3.21,
-4.28,
-3.96,
-4.63,
-3.99,
-3.69,
-4.13,
-4.71,
-4.32,
-3.69,
-3.77,
-4.1,
-4.9,
-4.71,
-1.96,
-1.41,
-0.96,
-1.49,
-0.85,
-3.15,
-0.11,
0.3,
-0.7,
-0.7,
-1.09,
-1.55,
-2.21,
-4.28,
-1.57,
0.93,
-1.89,
-2.59,
-1.12,
-6.89,
-1.7,
-0.14,
-0.46,
-1.85,
0.84,
-2.28,
-1.71,
-1.44,
-0.41,
-0.42,
-0.38,
-0.85,
-1.21,
-0.85,
-1.53,
-1.7,
-3.03,
-2.7,
-3.51,
-2.3,
0.07,
0.38,
0.38,
0.45,
0.36,
0.38,
-1.3,
-1.42,
-1.54,
0.79,
0.01,
0.61,
0.96,
-0.91,
1.1,
-2.42,
-3.36,
-0.78,
-1.5,
-1.45,
-5.4,
-1.52,
-2.42,
-2.16,
-1.16,
1.1,
-2.54,
-1.96,
-2.39,
-2.59,
-0.07,
-3.81,
-2.23,
-4.19,
-5.01,
-2.17,
-2.06,
-0.13,
-4.43,
-2.74,
-4.35,
-2.11,
-3.32,
-1.39,
-1.67,
-2.27,
-0.63,
-4.3,
-2.62,
-3.05,
-1.4,
-4.26,
-3.22,
-2.37,
-1.36,
-4.15,
-1.95,
-2.43,
-2.52,
-1.71,
-3.46,
-1.64,
-2.68,
-2.61,
-1.89,
-1.94,
-1.56,
-2.18,
-4.52,
-2.96,
-2.64,
-3.73,
-2.68,
-1.76,
-1.23,
0.7,
-0.42,
-2.38,
-2.18,
-3.18,
-1.26,
-3.81,
-3,
-3.62,
-2.82,
-2.58,
-4.21,
-2.86,
-3.6,
-3.68,
-3.76,
-2.93,
-4.49,
-3.35,
-3.14,
-2.86,
-2.19,
-1.57,
-3.99,
-4.16,
-2.81,
-5.06,
-1.98,
-2.1,
-3.71,
-3.37,
-1.07,
-2.14,
1.34,
-1.52,
-1.48,
-2.34,
-0.17,
-4.45,
1,
1.07,
1.06,
1.15,
-0.31,
-0.8,
1.07,
0.23,
0.96,
0.15,
-1,
-2.38,
-2.92,
-0.8,
-1.52,
-0.4,
0.97,
-0.66,
-0.3,
0.1,
-0.35,
0.96,
1.12,
-0.85,
-0.96,
0.94,
-0.95,
1.58,
1.11,
-0.96,
-2.92,
-1.33,
-1.6,
-2.05,
-3.28,
-1.52,
-0.8,
-1.8,
-2.33,
-2.44,
-2.49,
-0.74,
-1.74,
-1.01,
-3.38,
-1.68,
-1.96,
-2.41,
-2.19,
-2.37,
-1.51,
-1.66,
-1.52,
-3.24,
-1.47,
-4.92,
-4.24,
-4.55,
-4.06,
-3.15,
-4.43,
-3.38,
-2.57,
-2.89,
-3.52,
-3.43,
-2.48,
-4.77,
-2.48,
-4.89,
-5.46,
-5.68,
-3.61,
-2.18,
-2.12,
-3.04,
-4,
-0.71,
-1.46,
-1.77,
-2.26,
-1.64,
-1.74,
-2.02,
-5.16,
0.43,
-6.7,
-4.11,
-4.23,
-4.1,
-4.82,
-3.68,
-4.31,
-5.54,
-5.14,
-6.09,
-5.72,
-3.37,
-3.95,
-3.82,
-3.64,
-4.08,
-4.62,
-0.36,
-4.6,
-0.29,
-0.96,
-0.98,
-3.08,
-1.78,
-1.58,
-3.25,
-1.3,
-2.36,
-3.7,
-3.4,
-8.4,
-1.04,
-3.01,
-3.54,
-3.37,
-2.98,
-4.57,
-4.79,
-2.99,
-3.61,
-3.36,
-2.23,
-3.68,
-2.47,
-4.37,
-3.12,
-3.14,
-1.23,
-3.88,
-2.98,
-4.88,
-0.42,
-3.35,
-0.46,
-2.33,
1.07,
-1.24,
-1.78,
-3,
-0.96,
-3.13,
-3.48,
-1.59,
-3.95,
-4.6,
-5.4,
-3.59,
-0.74,
-2.39,
-0.68,
-1.61,
-2.09,
-1.91,
-0.95,
-2.24,
-3.27,
-3.8,
-3.84,
-2.64,
-5.27,
-5.35,
-4.25,
-2.53,
-2.06,
-1.37,
-0.02,
-0.4,
-0.43,
-2.22,
-0.9,
1.12,
-1.25,
-2.28,
0.59,
0.3,
-0.83,
-1.6,
-1.16,
-1.5,
1.05,
0.31,
1.08,
-0.09,
-1.93,
-2.29,
1.02,
-0.46,
-2.12,
-2.6,
-2.45,
-2.43,
-0.06,
-1.83,
-0.55,
-2.13,
-4.98,
0.02,
-1.96,
-1.56,
-2.63,
-0.53,
-0.83,
-0.2,
-0.17,
0.35,
-1.47,
1.09,
-5.82,
-3.33,
-3.31,
-2.73,
-0.12,
-0.47,
0.06,
-1.11,
-0.91,
-1.76,
-2.36,
-0.86,
-1.16,
-1.76,
-2.33,
-1.99,
-1.87,
-0.94,
-1.92,
-1.39,
-3.08,
-2.96,
-1.6,
-2.16,
-2.29,
-3.26,
-1.67,
-2.05,
-2.8,
-1.28,
-1.61,
-1.43,
-1.54,
-1.31,
-1.41,
-0.27,
-1.62,
-1.84,
-0.48,
-3.39,
-1.56,
-0.88,
-1.63,
-0.45,
-2.15,
-4.48,
-4.47,
-4.74,
-4.33,
-2.62,
-0.54,
-2.82,
-2.07,
-2.45,
-2.06,
-2.23,
-2.86,
-1.41,
-0.93,
-2.63,
-1.92,
-1.8,
-1.6,
-0.29,
-0.02,
-1.89,
-1.62,
-3.3,
-5.64,
-5.46,
-3.12,
-5.4,
-1.2,
-3.77,
-3.67,
-3.7,
-1.89,
-1.92,
-2.55,
-2.08,
-3.29,
-2.68,
-1.23,
-3.13,
-3.03,
-4.19,
-0.17,
-2.35,
-0.73,
-1.99,
-2.06,
-2.18,
-1.42,
-2.32,
-1.64,
-1.99,
-2.53,
-3.03,
-2.07,
-1.94,
-2.7,
-2.85,
-3.24,
-0.62,
-2.44,
-2.91,
0.36,
-2.09,
-2.34,
-5.74,
-2.36,
-0.85,
-2.3,
-1.95,
-2.24,
-3.4,
-4.63,
-3.68,
-2.7,
-4.46,
-3.66,
-4.04,
-3.75,
-3.3,
-2.82,
-3.9,
-2.24,
-1.83,
-3.74,
-3.16,
-3.39,
-3.12,
-4.7,
-4.17,
-2.78,
-3.15,
-2.56,
-2.09,
-3.59,
-4.47,
-3.42,
-3.04,
-1.22,
-4.69,
-6.36,
-2.78,
-6.02,
-4.61,
-6.51,
-4.36,
-4.73,
-2.93,
-2.27,
-3.8,
-3.68,
-2.4,
-3.97,
-2.52,
-1.93,
-5.38,
-6.34,
-2.64,
-1.61,
-4.11,
-2.93,
-4.2,
-6.05,
-4.18,
-5.22,
-3.94,
-4.16,
-3.79,
-3.78,
-2.6,
-4.31,
-3.09,
-2.06,
-1.89,
-1.6,
-1.55,
-2.71,
-1.89,
-4.31,
-3.78,
-4.16,
-4.24,
-7.26,
-4.93,
-4.53,
-5.3,
-3.46,
-3.57,
-0.48,
-1.91,
-4.19,
-5.24,
-5.28,
-1.87,
-3.66,
-4.84,
-5.59,
-5.68,
-3.89,
-3.27,
-3.07,
-4.74,
-5.47,
-4.22,
-3.48,
-4.12,
-6.7,
-4.4,
-3.59,
-5.19,
-4.46,
-3.37,
-4.3,
-2.82,
-0.77,
-5.54,
-6.29,
-2.52,
-3.98,
-3.85,
-4.46,
-4,
-4.65,
-2.88,
-3.14,
-2.87,
-5.37,
-4.42,
-5.24,
-4.95,
-4.7,
-4.58,
-5.15,
-1.42,
-5.51,
-3.21
],
"xaxis": "x",
"y": [
-3.075979232788086,
-3.032532215118408,
-3.78991436958313,
-3.3624794483184814,
-3.0457754135131836,
-3.032532215118408,
-3.370633840560913,
-5.089025497436523,
-4.131796360015869,
-5.089025497436523,
-3.032532215118408,
-3.032532215118408,
-2.774355888366699,
-2.5024261474609375,
-3.5715107917785645,
-3.5059871673583984,
-3.5289511680603027,
-3.451882839202881,
-5.411118030548096,
-5.411118030548096,
-2.3417043685913086,
-1.6079238653182983,
-1.8607993125915527,
-2.061211347579956,
-3.908752679824829,
-2.119251251220703,
-2.755847454071045,
-3.3717963695526123,
-4.663051605224609,
-1.4377120733261108,
-2.0453684329986572,
-2.9135050773620605,
-2.7847483158111572,
-2.810727596282959,
-3.5853395462036133,
-3.23367977142334,
-3.323152780532837,
-2.9057981967926025,
-3.604457139968872,
-2.402296304702759,
-4.298552989959717,
-3.790811538696289,
-3.0780699253082275,
-3.5710620880126953,
-3.7253901958465576,
-3.3155438899993896,
-4.513405799865723,
-4.427473545074463,
-2.582993984222412,
-4.05511999130249,
-3.521744966506958,
-4.690518379211426,
-4.616330146789551,
-2.9885098934173584,
-4.692978382110596,
-4.801051139831543,
-5.052684307098389,
-4.391729831695557,
-4.024573802947998,
-4.280261516571045,
-4.152506351470947,
-4.799864768981934,
-3.8170292377471924,
-5.514367580413818,
-6.735042095184326,
-5.169944763183594,
-5.731710910797119,
-5.006152629852295,
-5.4880146980285645,
-4.911745548248291,
-6.881042003631592,
-6.922119140625,
-6.554737091064453,
-7.605835437774658,
-6.15829610824585,
-6.736941814422607,
-7.579972267150879,
-7.245768070220947,
-4.940133094787598,
-5.331943511962891,
-6.684054374694824,
-5.419356822967529,
-5.640146255493164,
-7.081031322479248,
-7.294581413269043,
-6.66533088684082,
-8.308086395263672,
-1.178192377090454,
-1.468220591545105,
-1.687755823135376,
-2.1188549995422363,
-2.178251266479492,
-2.205240488052368,
-2.109888792037964,
-2.662687063217163,
-1.8892358541488647,
-1.8328404426574707,
-1.9042514562606812,
-1.8076711893081665,
-2.0627458095550537,
-2.960297107696533,
-2.0074098110198975,
-2.84623122215271,
-3.1445155143737793,
-3.078295946121216,
-3.785092353820801,
-1.974778175354004,
-2.240762233734131,
-1.782306432723999,
-2.2271130084991455,
-1.657062292098999,
-1.9849971532821655,
-1.689670205116272,
-2.229739189147949,
-2.335843801498413,
-2.0545573234558105,
-2.074568510055542,
-2.6265439987182617,
-3.111182689666748,
-2.4889824390411377,
-2.6349916458129883,
-2.8525946140289307,
-3.511427164077759,
-2.9099133014678955,
-2.8574302196502686,
-3.347917318344116,
-3.024360418319702,
-4.388440132141113,
-3.635120153427124,
-4.897220134735107,
-3.7539525032043457,
-2.591803789138794,
-3.0329902172088623,
-3.994184732437134,
-4.388440132141113,
-5.108038425445557,
-1.9656215906143188,
-2.2708394527435303,
-2.639531135559082,
-2.6575324535369873,
-2.203488349914551,
-1.7084060907363892,
-5.833066940307617,
-6.655587673187256,
-6.093654155731201,
-1.9463146924972534,
-5.155975818634033,
-3.0929043292999268,
-2.4296376705169678,
-2.7086613178253174,
-2.930830478668213,
-3.430485725402832,
-3.578983783721924,
-3.0667738914489746,
-3.3708949089050293,
-3.715021848678589,
-3.8666648864746094,
-3.6848385334014893,
-4.037737846374512,
-4.621581077575684,
-5.311896800994873,
-4.6610188484191895,
-2.724069356918335,
-2.7448580265045166,
-6.526562690734863,
-4.587184429168701,
-3.1370785236358643,
-3.276394844055176,
-2.667175531387329,
-2.5523335933685303,
-3.208024263381958,
-3.3157718181610107,
-2.459958553314209,
-2.870258331298828,
-3.694016933441162,
-4.776819229125977,
-5.755012512207031,
-3.868790626525879,
-4.9819536209106445,
-5.8386921882629395,
-4.765989303588867,
-5.68750524520874,
-5.457382678985596,
-5.4958086013793945,
-6.291233062744141,
-5.65073299407959,
-5.36174201965332,
-5.491986274719238,
-6.04989767074585,
-5.244652271270752,
-6.25745153427124,
-5.466961860656738,
-5.595893859863281,
-5.676501274108887,
-6.072147369384766,
-6.160078048706055,
-5.130326747894287,
-6.8678178787231445,
-6.28027868270874,
-6.148545742034912,
-6.068840980529785,
-6.9226884841918945,
-6.188719749450684,
-7.255788803100586,
-7.00148344039917,
-6.505483150482178,
-6.619489669799805,
-7.476499080657959,
-6.976536273956299,
-7.882375717163086,
-7.2725911140441895,
-7.8970441818237305,
-7.706000804901123,
-8.037285804748535,
-7.91480827331543,
-8.847006797790527,
-8.00639820098877,
-9.930646896362305,
-5.626089572906494,
-4.444261074066162,
-4.7700581550598145,
-5.551693439483643,
-1.1074492931365967,
-0.5840873718261719,
-0.8557887673377991,
-1.9479243755340576,
-0.6490472555160522,
-1.1187366247177124,
-0.8445292115211487,
-1.1094019412994385,
-0.3568764626979828,
-4.264913082122803,
-1.2301661968231201,
-1.5397180318832397,
-0.6408449411392212,
-0.9208235144615173,
-1.2054426670074463,
-1.3253597021102905,
-1.2667953968048096,
-0.949700653553009,
-1.2809348106384277,
-0.7181134819984436,
-0.9805190563201904,
-0.8706653714179993,
-1.7863006591796875,
-4.264913082122803,
-1.7044563293457031,
-1.4314193725585938,
-1.4868543148040771,
-1.5322755575180054,
-1.3824940919876099,
-1.2780766487121582,
-1.6532974243164062,
-1.6385111808776855,
-1.2854082584381104,
-1.1740037202835083,
-1.1052632331848145,
-1.1543703079223633,
-4.264913082122803,
-3.494784116744995,
-2.287235975265503,
-1.5970293283462524,
-1.0198465585708618,
-1.9881715774536133,
-0.4219919443130493,
-2.2322916984558105,
-4.264913082122803,
-1.1390386819839478,
-1.3939062356948853,
-4.264913082122803,
-2.205702066421509,
-2.6668131351470947,
-0.06436821818351746,
-0.09992557764053345,
-0.641219437122345,
-1.4639627933502197,
-0.40895891189575195,
-1.4282909631729126,
-0.35278937220573425,
-1.7574653625488281,
-1.3705486059188843,
-1.5859187841415405,
-2.634643077850342,
-3.080829620361328,
-2.620469093322754,
-3.3859195709228516,
-3.1151933670043945,
-1.6517224311828613,
-2.249518871307373,
-0.17554500699043274,
-1.4381346702575684,
-1.6429165601730347,
-2.549084424972534,
-2.549084424972534,
0.08099853247404099,
0.24302233755588531,
-1.527684211730957,
-1.554922103881836,
-0.18150967359542847,
-0.9770277142524719,
-1.365750789642334,
-1.452797532081604,
-1.8414381742477417,
-1.5300488471984863,
-3.436159610748291,
-2.1374130249023438,
-1.428889513015747,
-1.5219248533248901,
-1.6331396102905273,
-2.1930928230285645,
-0.7759718298912048,
-3.436159610748291,
-3.895665407180786,
-1.6207029819488525,
-4.263359069824219,
0.14904078841209412,
0.19152584671974182,
-1.1360653638839722,
-0.6338238716125488,
-2.3497257232666016,
-1.109246850013733,
-4.873830318450928,
-4.873830318450928,
-0.24350181221961975,
-1.5357497930526733,
-1.6976326704025269,
-2.626811981201172,
-2.783895254135132,
-1.316127896308899,
-2.321901798248291,
-4.873830318450928,
-2.326998472213745,
-2.126988172531128,
-0.5451247692108154,
-2.2781271934509277,
-1.0995382070541382,
-1.663588047027588,
-2.125702142715454,
-1.7430377006530762,
-4.873830318450928,
-3.3285317420959473,
-1.6914764642715454,
-1.8889436721801758,
-1.0200587511062622,
0.4059051275253296,
-0.23212024569511414,
-0.6932563185691833,
-0.7495948076248169,
-0.32241666316986084,
-1.0988801717758179,
-1.151648998260498,
-1.134775161743164,
-1.2599848508834839,
-1.7862625122070312,
-2.0256423950195312,
-1.7126116752624512,
-0.9312435388565063,
-2.068814277648926,
-2.403461217880249,
-2.0848605632781982,
-1.8527793884277344,
-3.588089942932129,
-4.362377643585205,
-4.065668106079102,
-1.292168378829956,
-4.065668106079102,
-4.065668106079102,
-0.492042601108551,
-1.0065643787384033,
-0.6554000973701477,
-2.4060261249542236,
-2.021278142929077,
-2.860557794570923,
-3.1641812324523926,
-4.289104461669922,
-6.070785045623779,
-4.8349714279174805,
-0.3305325508117676,
-1.1694786548614502,
-0.7621282339096069,
-1.843996286392212,
-1.4947446584701538,
-1.41599702835083,
-0.9061982035636902,
-1.8028253316879272,
-1.263688564300537,
-1.1640126705169678,
-1.0455539226531982,
-2.774432420730591,
-1.3180805444717407,
-3.6480350494384766,
-4.12204647064209,
-4.231889247894287,
-1.3582912683486938,
-0.022012906149029732,
-1.4647459983825684,
-1.3184789419174194,
-4.887099266052246,
-0.4391767382621765,
-0.13423095643520355,
0.06063834950327873,
-2.9745032787323,
-3.018512487411499,
-3.553748846054077,
-2.8583805561065674,
-4.113079071044922,
-4.34196662902832,
-4.169028282165527,
-3.643047571182251,
-3.69022536277771,
-3.497478723526001,
-3.610947370529175,
-3.4961540699005127,
-2.7581887245178223,
-3.018512487411499,
-3.4137392044067383,
-3.7475249767303467,
-4.428482532501221,
-1.812610387802124,
-1.4867674112319946,
-0.7729224562644958,
-1.2040801048278809,
-1.248477578163147,
-2.8273463249206543,
-0.7337514758110046,
-0.4153001606464386,
-1.3939486742019653,
-0.23466011881828308,
-1.6121207475662231,
-2.113475799560547,
-1.8894379138946533,
-4.520258903503418,
-1.7925779819488525,
-0.15483622252941132,
-2.5052804946899414,
-2.5220134258270264,
-1.6452357769012451,
-6.543625831604004,
-2.5826542377471924,
-1.4441684484481812,
-1.2798749208450317,
-3.3321399688720703,
-0.12911322712898254,
-2.2392802238464355,
-2.074686050415039,
-2.0301666259765625,
-0.5343373417854309,
-0.7319477200508118,
-0.8868855834007263,
-0.8625536561012268,
-1.2459825277328491,
-1.1499041318893433,
-1.625115156173706,
-2.632464647293091,
-2.9395673274993896,
-2.304727554321289,
-3.3072898387908936,
-2.0969717502593994,
-0.45440423488616943,
-0.7698479294776917,
-0.5142314434051514,
-0.4740782380104065,
-0.48901814222335815,
0.4408934712409973,
-0.3048977553844452,
-0.8630016446113586,
-1.7794344425201416,
0.038696348667144775,
-0.9097303748130798,
-0.4480418562889099,
0.3716341257095337,
-0.726102888584137,
0.21020926535129547,
-3.709307909011841,
-4.406096458435059,
-1.0203903913497925,
-1.7724610567092896,
-1.7808880805969238,
-3.6332547664642334,
-1.2108358144760132,
-1.038887858390808,
-0.6759921908378601,
-1.4324016571044922,
0.42576736211776733,
-3.071669101715088,
-1.6611523628234863,
-2.867259979248047,
-3.18375301361084,
-1.098340392112732,
-4.342002868652344,
-2.3620753288269043,
-4.066603183746338,
-4.0847978591918945,
-2.358903646469116,
-1.6781306266784668,
-0.13218949735164642,
-4.517373561859131,
-1.996034026145935,
-3.9959795475006104,
-2.3270015716552734,
-3.6316611766815186,
-1.4836429357528687,
-1.6502697467803955,
-2.508788585662842,
-0.8463662266731262,
-4.285862445831299,
-2.4513373374938965,
-2.8408362865448,
-1.9464651346206665,
-4.6916351318359375,
-3.024153232574463,
-2.5179195404052734,
-2.0146002769470215,
-3.5809237957000732,
-2.2256646156311035,
-2.7651357650756836,
-2.6292240619659424,
-2.059890031814575,
-3.3360867500305176,
-2.4838595390319824,
-2.965120553970337,
-2.4505667686462402,
-1.604386806488037,
-2.430610418319702,
-1.8126482963562012,
-2.226140022277832,
-5.0831756591796875,
-2.4739584922790527,
-2.207655191421509,
-4.0676140785217285,
-2.623356580734253,
-2.265329360961914,
-1.323778510093689,
0.543237030506134,
-0.9726728200912476,
-2.547603130340576,
-2.7967216968536377,
-3.1391916275024414,
-1.325573444366455,
-3.8607282638549805,
-2.9361884593963623,
-3.044365882873535,
-2.5959270000457764,
-2.7825889587402344,
-3.7978246212005615,
-2.313243865966797,
-3.491619825363159,
-3.546542167663574,
-4.133540630340576,
-2.7908082008361816,
-4.436686992645264,
-3.7276415824890137,
-3.079826831817627,
-3.2464065551757812,
-2.532047986984253,
-1.5342477560043335,
-3.635042667388916,
-4.373437404632568,
-2.872556447982788,
-5.027786731719971,
-2.2234201431274414,
-2.0190834999084473,
-3.4799306392669678,
-2.3924126625061035,
-0.6464341878890991,
-1.1980183124542236,
0.02303152158856392,
-1.1259044408798218,
-1.1019810438156128,
-2.7504539489746094,
-1.1152803897857666,
-3.5300562381744385,
0.623227596282959,
-1.115794062614441,
0.8967414498329163,
0.2865058183670044,
-0.37481048703193665,
-0.6320878267288208,
0.5609681010246277,
-0.8500978946685791,
0.944487988948822,
-1.051853060722351,
-2.3150229454040527,
-2.813127040863037,
-2.6089344024658203,
-0.27354976534843445,
-1.499785304069519,
-0.9474438428878784,
0.518194317817688,
-1.3581264019012451,
-0.6695889830589294,
-0.07122057676315308,
-0.6498165130615234,
0.352867066860199,
-0.13022476434707642,
-0.665870726108551,
-1.1478716135025024,
0.012171316891908646,
-1.0824084281921387,
0.16157026588916779,
0.1402798891067505,
-1.2481456995010376,
-2.03651762008667,
-1.8586469888687134,
-1.9121434688568115,
-2.1479403972625732,
-2.687333583831787,
-2.056335210800171,
-1.7157596349716187,
-2.1401686668395996,
-2.6025187969207764,
-2.8553853034973145,
-2.3471450805664062,
-1.0030338764190674,
-1.8360155820846558,
-0.5627323985099792,
-3.138162136077881,
-1.892307162284851,
-1.929982304573059,
-2.404762029647827,
-1.927917718887329,
-1.962047815322876,
-0.7918878793716431,
-1.8874553442001343,
-1.8967194557189941,
-2.59700608253479,
-2.0825111865997314,
-4.099753379821777,
-4.18679141998291,
-3.376058578491211,
-3.5286107063293457,
-3.7161269187927246,
-4.026898384094238,
-3.360199451446533,
-3.5623538494110107,
-3.5987045764923096,
-3.3845250606536865,
-3.1129801273345947,
-2.481541872024536,
-4.723852157592773,
-3.1923389434814453,
-4.535590648651123,
-5.843477249145508,
-5.114421844482422,
-4.026052474975586,
-2.8998007774353027,
-2.7204477787017822,
-3.50416898727417,
-4.041652679443359,
-1.0227882862091064,
-1.3453266620635986,
-1.6539806127548218,
-1.6960455179214478,
-1.776206612586975,
-2.1198673248291016,
-2.0426363945007324,
-4.669909477233887,
-1.3208394050598145,
-6.139462471008301,
-4.529548645019531,
-4.725513935089111,
-4.558964252471924,
-4.287978172302246,
-3.306295394897461,
-4.66478157043457,
-4.560111045837402,
-4.356207847595215,
-5.732903003692627,
-5.3882622718811035,
-3.6352648735046387,
-3.6344499588012695,
-3.7160842418670654,
-3.7160842418670654,
-2.774338483810425,
-4.845580577850342,
-0.7900989055633545,
-5.4269938468933105,
-1.100764513015747,
-1.7827261686325073,
-1.1083567142486572,
-2.802555561065674,
-2.0019619464874268,
-1.675959825515747,
-2.5240018367767334,
-2.4431614875793457,
-3.239957571029663,
-3.974937677383423,
-3.3565030097961426,
-6.3090643882751465,
-1.7298030853271484,
-3.1460413932800293,
-2.7560861110687256,
-3.3053979873657227,
-3.028813123703003,
-3.558718204498291,
-3.971386671066284,
-2.6361000537872314,
-3.1470019817352295,
-3.259079933166504,
-1.83284592628479,
-3.5566940307617188,
-3.1844072341918945,
-3.6648693084716797,
-2.7316627502441406,
-2.7127718925476074,
-1.0352728366851807,
-2.6251800060272217,
-2.3708536624908447,
-4.843750476837158,
-0.8290698528289795,
-3.7792067527770996,
-0.5560937523841858,
-2.9145700931549072,
0.5172063112258911,
-1.4655226469039917,
-1.7212672233581543,
-3.039670944213867,
-1.0738612413406372,
-3.2513537406921387,
-3.842773675918579,
-1.5096964836120605,
-4.759267807006836,
-4.759267807006836,
-4.759267807006836,
-3.4875996112823486,
-1.694029450416565,
-2.6994307041168213,
-1.0801764726638794,
-1.7631433010101318,
-2.3084399700164795,
-1.9458998441696167,
-1.2324795722961426,
-1.9128193855285645,
-3.3781442642211914,
-4.120675086975098,
-4.030434608459473,
-2.078638792037964,
-4.72059965133667,
-4.9811015129089355,
-4.863513946533203,
-2.7713940143585205,
-2.1956522464752197,
-1.144649863243103,
-0.7243250012397766,
-1.0300862789154053,
-0.23232288658618927,
-2.537271022796631,
-0.6232984066009521,
0.5165048241615295,
-1.0714372396469116,
-2.0745275020599365,
-0.1847570687532425,
-0.3487047255039215,
-0.5656517148017883,
-1.1018489599227905,
-1.1329339742660522,
-1.9027401208877563,
0.14945544302463531,
-0.1871718168258667,
0.4937102794647217,
0.1643967181444168,
-1.9967966079711914,
-1.7545537948608398,
0.1696687787771225,
0.02761889435350895,
-1.2385286092758179,
-2.687041997909546,
-2.297149419784546,
-1.8064507246017456,
-1.0781453847885132,
-2.1441538333892822,
-0.6883423924446106,
-2.4711527824401855,
-4.719557762145996,
-0.41640859842300415,
-2.1853384971618652,
-0.8280417919158936,
-2.4881250858306885,
-0.6384308338165283,
-1.8195629119873047,
-0.45132336020469666,
-1.0794545412063599,
-0.9603967070579529,
-1.7629586458206177,
0.622812807559967,
-5.726032257080078,
-2.3910293579101562,
-3.107268810272217,
-2.7325828075408936,
-0.62595134973526,
-0.1931159943342209,
-0.38008636236190796,
-1.088444471359253,
-0.9792685508728027,
-2.0069496631622314,
-2.0620999336242676,
-0.9511351585388184,
-1.2011457681655884,
-1.8650245666503906,
-1.9176138639450073,
-1.7084671258926392,
-2.150088310241699,
-2.252802610397339,
-3.3847811222076416,
-2.4109299182891846,
-3.024230718612671,
-3.1103549003601074,
-2.206653594970703,
-2.4326817989349365,
-3.198838949203491,
-3.4637041091918945,
-2.7776243686676025,
-2.054075241088867,
-2.770371198654175,
-1.3905137777328491,
-1.7165539264678955,
-1.8553262948989868,
-1.5640794038772583,
-1.4499417543411255,
-1.5976096391677856,
-0.5402631759643555,
-1.3905651569366455,
-1.6122658252716064,
-0.6496814489364624,
-4.030760288238525,
-1.8389313220977783,
-1.5910147428512573,
-1.4320789575576782,
-0.8830068111419678,
-2.459352731704712,
-4.050243854522705,
-3.7278285026550293,
-5.4395318031311035,
-4.022721767425537,
-3.3847811222076416,
-1.3560596704483032,
-2.2754344940185547,
-2.05960750579834,
-3.041106700897217,
-1.8262799978256226,
-2.676955461502075,
-2.8828516006469727,
-1.7060065269470215,
-1.276329517364502,
-2.519054889678955,
-1.6114423274993896,
-2.4055697917938232,
-1.7772724628448486,
-0.6819428205490112,
-0.7772801518440247,
-2.530730724334717,
-2.5402181148529053,
-3.3847811222076416,
-5.694701194763184,
-5.0957489013671875,
-2.747157096862793,
-4.75764799118042,
-1.3019709587097168,
-3.758913040161133,
-3.614886522293091,
-3.1728994846343994,
-2.216679573059082,
-1.3444865942001343,
-2.876447916030884,
-3.221773147583008,
-2.995473861694336,
-2.9911420345306396,
-1.4109934568405151,
-3.083721160888672,
-3.2230634689331055,
-5.043396472930908,
-0.15166951715946198,
-2.2503836154937744,
-1.129314661026001,
-3.177671194076538,
-1.7606399059295654,
-2.4921727180480957,
-2.093625545501709,
-2.711789131164551,
-3.038210391998291,
-1.8424222469329834,
-2.7140698432922363,
-3.2972469329833984,
-1.9415605068206787,
-2.087177038192749,
-2.7454071044921875,
-2.982250928878784,
-3.5666074752807617,
-0.8148857355117798,
-2.45953106880188,
-2.615901470184326,
-0.1958649903535843,
-2.1472625732421875,
-2.819697618484497,
-5.305897235870361,
-2.406728982925415,
-1.2305294275283813,
-2.9038376808166504,
-1.6135611534118652,
-2.6998798847198486,
-4.006109237670898,
-4.362377643585205,
-3.8601458072662354,
-2.0898351669311523,
-3.8055288791656494,
-3.6801111698150635,
-3.8338446617126465,
-3.177645683288574,
-3.330509901046753,
-2.078737735748291,
-3.8983519077301025,
-2.5434577465057373,
-1.8859142065048218,
-3.6825623512268066,
-3.6365480422973633,
-3.487168788909912,
-3.2249014377593994,
-4.283018112182617,
-4.035367488861084,
-3.86350154876709,
-3.1218101978302,
-2.800260305404663,
-1.7492119073867798,
-3.0395126342773438,
-3.677354574203491,
-3.6844534873962402,
-2.9650120735168457,
-1.6976813077926636,
-4.362377643585205,
-5.927952289581299,
-3.51777982711792,
-6.646682262420654,
-4.994495868682861,
-5.345769882202148,
-4.144031047821045,
-4.958847522735596,
-3.069575071334839,
-2.081493854522705,
-3.6655094623565674,
-3.417208433151245,
-3.750216484069824,
-3.0697507858276367,
-1.9517560005187988,
-2.101963996887207,
-5.122186183929443,
-5.839733600616455,
-2.6219711303710938,
-2.072814464569092,
-4.244150161743164,
-2.7908082008361816,
-4.419620990753174,
-4.264913082122803,
-3.9950807094573975,
-4.552131175994873,
-3.462944746017456,
-3.7131264209747314,
-3.511658191680908,
-3.496755361557007,
-2.658078670501709,
-3.4391236305236816,
-3.2998270988464355,
-3.1130213737487793,
-2.5168654918670654,
-1.9634183645248413,
-1.8052300214767456,
-2.7295234203338623,
-2.9127511978149414,
-4.873830318450928,
-3.4586308002471924,
-2.9875001907348633,
-3.99458909034729,
-4.264913082122803,
-4.921290397644043,
-4.750346660614014,
-5.647298812866211,
-3.434561014175415,
-3.7475790977478027,
-0.7485884428024292,
-1.5428061485290527,
-4.726381778717041,
-5.309823036193848,
-4.412337779998779,
-1.7279006242752075,
-3.6632161140441895,
-4.465612888336182,
-4.497042179107666,
-4.873830318450928,
-3.669187545776367,
-3.36433482170105,
-3.669841766357422,
-4.152651786804199,
-3.9232475757598877,
-4.139514923095703,
-3.1786084175109863,
-3.6640825271606445,
-4.318904876708984,
-3.6848714351654053,
-3.2536370754241943,
-5.12932825088501,
-3.9871206283569336,
-3.637709379196167,
-4.040743827819824,
-2.99715256690979,
-0.8202764987945557,
-4.4972405433654785,
-6.238535404205322,
-3.0039753913879395,
-3.6727700233459473,
-2.853379964828491,
-4.147736549377441,
-3.553748846054077,
-3.5069773197174072,
-3.178441047668457,
-3.409480094909668,
-2.685922145843506,
-4.580343246459961,
-3.85261869430542,
-5.553661823272705,
-4.914090633392334,
-4.278916358947754,
-3.7516748905181885,
-3.868772506713867,
-1.0023274421691895,
-4.644052505493164,
-3.1260015964508057
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"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,
"#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,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"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,
"#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,
"#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
},
"autotypenumbers": "strict",
"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,
"#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,
"#f0f921"
]
],
"sequentialminus": [
[
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,
"#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
}
}
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "x"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "y"
}
}
}
},
"text/html": [
"<div> <div id=\"7feed9ad-d895-4a5e-a503-83d87a5e7a8e\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"7feed9ad-d895-4a5e-a503-83d87a5e7a8e\")) { Plotly.newPlot( \"7feed9ad-d895-4a5e-a503-83d87a5e7a8e\", [{\"hovertemplate\":\"x=%{x}<br>y=%{y}<extra></extra>\",\"legendgroup\":\"\",\"marker\":{\"color\":\"#636efa\",\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"x\":[-3.18,-2.64,-3.84,-3.74,-3.55,-3.1,-3.3,-4.53,-3.85,-5.24,-3.52,-4.15,-2.54,-2.1,-3.23,-3.24,-3.82,-3.27,-4.44,-5.05,-2.68,-2.03,-1.87,-1.97,-4.0,-1.64,-2.36,-3.01,-4.24,-1.64,-2.21,-2.8,-2.77,-2.82,-3.37,-3.31,-3.2,-3.21,-3.11,-3.27,-4.06,-3.75,-3.77,-3.66,-3.89,-4.0,-4.64,-4.15,-2.82,-4.31,-4.17,-4.91,-5.22,-3.6,-3.77,-3.7,-4.29,-4.74,-4.72,-3.96,-4.14,-4.89,-4.63,-4.92,-5.26,-5.89,-6.96,-6.19,-6.0,-5.96,-6.68,-8.04,-6.74,-8.19,-7.02,-7.8,-8.8,-9.03,-4.97,-4.38,-7.42,-5.17,-6.89,-8.23,-8.0,-8.49,-8.66,-1.0,-0.63,-0.89,-1.17,-1.54,-1.9,-1.91,-3.14,-1.09,-1.6,-1.29,-1.32,-1.68,-2.0,-1.48,-2.18,-2.6,-3.04,-3.67,-1.41,-1.73,-1.59,-2.29,-1.62,-1.6,-1.85,-2.08,-2.38,-1.92,-2.03,-1.96,-2.96,-2.0,-2.43,-2.4,-2.73,-2.63,-2.63,-2.51,-2.69,-3.12,-3.07,-3.81,-2.3,-1.71,-3.12,-4.59,-3.99,-4.81,-1.64,-1.3,-3.22,-1.96,-2.54,-1.36,-6.29,-7.33,-6.18,-1.5,-5.18,-4.23,-1.8,-2.38,-3.13,-3.27,-3.05,-3.04,-3.21,-3.63,-4.07,-3.5,-3.59,-4.0,-4.48,-5.04,-2.31,-2.38,-4.63,-4.57,-2.78,-3.19,-2.54,-1.97,-3.52,-3.52,-2.39,-3.08,-4.54,-4.88,-6.56,-5.27,-5.8,-6.39,-5.25,-5.21,-6.27,-6.25,-6.14,-6.01,-6.26,-6.21,-6.29,-7.28,-7.8,-6.47,-6.57,-7.0,-7.39,-7.25,-6.51,-7.05,-7.32,-7.39,-7.21,-7.43,-8.56,-8.65,-8.6,-8.32,-7.42,-8.71,-7.82,-7.66,-8.42,-7.92,-8.3,-8.94,-9.16,-10.26,-10.41,-11.62,-6.9,-4.14,-3.93,-4.35,0.0,0.43,0.04,-0.6,-0.24,0.08,-0.47,-0.52,-0.2,-1.24,-0.8,-0.89,-0.7,-0.8,-0.49,-1.11,-1.04,-0.5,-1.17,-0.72,-0.38,-0.41,-0.44,-1.81,-1.47,-1.4,-0.92,-1.52,-1.55,-1.38,-1.08,-1.15,-1.0,-0.89,-0.85,-0.85,-2.39,-2.09,-2.11,-1.72,-1.27,-1.72,-0.74,-2.55,-4.67,-1.38,-0.71,-3.01,-0.88,-2.1,0.0,0.81,-0.17,-0.62,-0.4,-0.7,-0.29,-0.92,-1.19,-1.4,-2.41,-3.48,-2.82,-2.22,-2.92,-1.36,-2.39,0.58,-0.85,-1.3,-1.7,-2.36,0.57,0.32,-1.19,-1.63,0.52,-0.19,-0.8,-1.42,-1.42,-1.3,-2.05,-2.59,-0.83,-1.06,-1.33,-1.83,0.22,-3.31,-4.43,-1.28,-5.19,1.22,0.38,-0.19,1.0,-1.06,-0.82,-2.3,-4.62,0.01,-1.77,-1.55,-2.6,-2.06,-0.89,-2.11,-6.81,-2.21,-1.84,0.28,-2.07,-0.81,-1.86,-1.45,-1.1,-3.55,-3.4,-1.68,-1.47,-0.48,0.58,0.52,-0.04,-0.49,-0.14,-0.72,-0.82,-1.01,-0.55,-1.24,-1.36,-1.21,-0.82,-1.89,-2.0,-1.75,-1.92,-2.46,-3.39,-2.71,-0.6,-3.39,-4.1,-0.22,-0.74,-0.8,-2.32,-1.66,-2.67,-2.35,-4.66,-6.96,-5.64,0.48,-0.39,-0.06,-0.99,-0.66,-0.55,-0.03,-1.62,-1.1,-0.77,-0.43,-1.85,-0.85,-3.96,-5.31,-4.85,-0.59,0.56,0.11,-0.82,-4.6,0.51,0.74,0.64,-3.11,-3.64,-4.3,-3.21,-4.28,-3.96,-4.63,-3.99,-3.69,-4.13,-4.71,-4.32,-3.69,-3.77,-4.1,-4.9,-4.71,-1.96,-1.41,-0.96,-1.49,-0.85,-3.15,-0.11,0.3,-0.7,-0.7,-1.09,-1.55,-2.21,-4.28,-1.57,0.93,-1.89,-2.59,-1.12,-6.89,-1.7,-0.14,-0.46,-1.85,0.84,-2.28,-1.71,-1.44,-0.41,-0.42,-0.38,-0.85,-1.21,-0.85,-1.53,-1.7,-3.03,-2.7,-3.51,-2.3,0.07,0.38,0.38,0.45,0.36,0.38,-1.3,-1.42,-1.54,0.79,0.01,0.61,0.96,-0.91,1.1,-2.42,-3.36,-0.78,-1.5,-1.45,-5.4,-1.52,-2.42,-2.16,-1.16,1.1,-2.54,-1.96,-2.39,-2.59,-0.07,-3.81,-2.23,-4.19,-5.01,-2.17,-2.06,-0.13,-4.43,-2.74,-4.35,-2.11,-3.32,-1.39,-1.67,-2.27,-0.63,-4.3,-2.62,-3.05,-1.4,-4.26,-3.22,-2.37,-1.36,-4.15,-1.95,-2.43,-2.52,-1.71,-3.46,-1.64,-2.68,-2.61,-1.89,-1.94,-1.56,-2.18,-4.52,-2.96,-2.64,-3.73,-2.68,-1.76,-1.23,0.7,-0.42,-2.38,-2.18,-3.18,-1.26,-3.81,-3.0,-3.62,-2.82,-2.58,-4.21,-2.86,-3.6,-3.68,-3.76,-2.93,-4.49,-3.35,-3.14,-2.86,-2.19,-1.57,-3.99,-4.16,-2.81,-5.06,-1.98,-2.1,-3.71,-3.37,-1.07,-2.14,1.34,-1.52,-1.48,-2.34,-0.17,-4.45,1.0,1.07,1.06,1.15,-0.31,-0.8,1.07,0.23,0.96,0.15,-1.0,-2.38,-2.92,-0.8,-1.52,-0.4,0.97,-0.66,-0.3,0.1,-0.35,0.96,1.12,-0.85,-0.96,0.94,-0.95,1.58,1.11,-0.96,-2.92,-1.33,-1.6,-2.05,-3.28,-1.52,-0.8,-1.8,-2.33,-2.44,-2.49,-0.74,-1.74,-1.01,-3.38,-1.68,-1.96,-2.41,-2.19,-2.37,-1.51,-1.66,-1.52,-3.24,-1.47,-4.92,-4.24,-4.55,-4.06,-3.15,-4.43,-3.38,-2.57,-2.89,-3.52,-3.43,-2.48,-4.77,-2.48,-4.89,-5.46,-5.68,-3.61,-2.18,-2.12,-3.04,-4.0,-0.71,-1.46,-1.77,-2.26,-1.64,-1.74,-2.02,-5.16,0.43,-6.7,-4.11,-4.23,-4.1,-4.82,-3.68,-4.31,-5.54,-5.14,-6.09,-5.72,-3.37,-3.95,-3.82,-3.64,-4.08,-4.62,-0.36,-4.6,-0.29,-0.96,-0.98,-3.08,-1.78,-1.58,-3.25,-1.3,-2.36,-3.7,-3.4,-8.4,-1.04,-3.01,-3.54,-3.37,-2.98,-4.57,-4.79,-2.99,-3.61,-3.36,-2.23,-3.68,-2.47,-4.37,-3.12,-3.14,-1.23,-3.88,-2.98,-4.88,-0.42,-3.35,-0.46,-2.33,1.07,-1.24,-1.78,-3.0,-0.96,-3.13,-3.48,-1.59,-3.95,-4.6,-5.4,-3.59,-0.74,-2.39,-0.68,-1.61,-2.09,-1.91,-0.95,-2.24,-3.27,-3.8,-3.84,-2.64,-5.27,-5.35,-4.25,-2.53,-2.06,-1.37,-0.02,-0.4,-0.43,-2.22,-0.9,1.12,-1.25,-2.28,0.59,0.3,-0.83,-1.6,-1.16,-1.5,1.05,0.31,1.08,-0.09,-1.93,-2.29,1.02,-0.46,-2.12,-2.6,-2.45,-2.43,-0.06,-1.83,-0.55,-2.13,-4.98,0.02,-1.96,-1.56,-2.63,-0.53,-0.83,-0.2,-0.17,0.35,-1.47,1.09,-5.82,-3.33,-3.31,-2.73,-0.12,-0.47,0.06,-1.11,-0.91,-1.76,-2.36,-0.86,-1.16,-1.76,-2.33,-1.99,-1.87,-0.94,-1.92,-1.39,-3.08,-2.96,-1.6,-2.16,-2.29,-3.26,-1.67,-2.05,-2.8,-1.28,-1.61,-1.43,-1.54,-1.31,-1.41,-0.27,-1.62,-1.84,-0.48,-3.39,-1.56,-0.88,-1.63,-0.45,-2.15,-4.48,-4.47,-4.74,-4.33,-2.62,-0.54,-2.82,-2.07,-2.45,-2.06,-2.23,-2.86,-1.41,-0.93,-2.63,-1.92,-1.8,-1.6,-0.29,-0.02,-1.89,-1.62,-3.3,-5.64,-5.46,-3.12,-5.4,-1.2,-3.77,-3.67,-3.7,-1.89,-1.92,-2.55,-2.08,-3.29,-2.68,-1.23,-3.13,-3.03,-4.19,-0.17,-2.35,-0.73,-1.99,-2.06,-2.18,-1.42,-2.32,-1.64,-1.99,-2.53,-3.03,-2.07,-1.94,-2.7,-2.85,-3.24,-0.62,-2.44,-2.91,0.36,-2.09,-2.34,-5.74,-2.36,-0.85,-2.3,-1.95,-2.24,-3.4,-4.63,-3.68,-2.7,-4.46,-3.66,-4.04,-3.75,-3.3,-2.82,-3.9,-2.24,-1.83,-3.74,-3.16,-3.39,-3.12,-4.7,-4.17,-2.78,-3.15,-2.56,-2.09,-3.59,-4.47,-3.42,-3.04,-1.22,-4.69,-6.36,-2.78,-6.02,-4.61,-6.51,-4.36,-4.73,-2.93,-2.27,-3.8,-3.68,-2.4,-3.97,-2.52,-1.93,-5.38,-6.34,-2.64,-1.61,-4.11,-2.93,-4.2,-6.05,-4.18,-5.22,-3.94,-4.16,-3.79,-3.78,-2.6,-4.31,-3.09,-2.06,-1.89,-1.6,-1.55,-2.71,-1.89,-4.31,-3.78,-4.16,-4.24,-7.26,-4.93,-4.53,-5.3,-3.46,-3.57,-0.48,-1.91,-4.19,-5.24,-5.28,-1.87,-3.66,-4.84,-5.59,-5.68,-3.89,-3.27,-3.07,-4.74,-5.47,-4.22,-3.48,-4.12,-6.7,-4.4,-3.59,-5.19,-4.46,-3.37,-4.3,-2.82,-0.77,-5.54,-6.29,-2.52,-3.98,-3.85,-4.46,-4.0,-4.65,-2.88,-3.14,-2.87,-5.37,-4.42,-5.24,-4.95,-4.7,-4.58,-5.15,-1.42,-5.51,-3.21],\"xaxis\":\"x\",\"y\":[-3.075979232788086,-3.032532215118408,-3.78991436958313,-3.3624794483184814,-3.0457754135131836,-3.032532215118408,-3.370633840560913,-5.089025497436523,-4.131796360015869,-5.089025497436523,-3.032532215118408,-3.032532215118408,-2.774355888366699,-2.5024261474609375,-3.5715107917785645,-3.5059871673583984,-3.5289511680603027,-3.451882839202881,-5.411118030548096,-5.411118030548096,-2.3417043685913086,-1.6079238653182983,-1.8607993125915527,-2.061211347579956,-3.908752679824829,-2.119251251220703,-2.755847454071045,-3.3717963695526123,-4.663051605224609,-1.4377120733261108,-2.0453684329986572,-2.9135050773620605,-2.7847483158111572,-2.810727596282959,-3.5853395462036133,-3.23367977142334,-3.323152780532837,-2.9057981967926025,-3.604457139968872,-2.402296304702759,-4.298552989959717,-3.790811538696289,-3.0780699253082275,-3.5710620880126953,-3.7253901958465576,-3.3155438899993896,-4.513405799865723,-4.427473545074463,-2.582993984222412,-4.05511999130249,-3.521744966506958,-4.690518379211426,-4.616330146789551,-2.9885098934173584,-4.692978382110596,-4.801051139831543,-5.052684307098389,-4.391729831695557,-4.024573802947998,-4.280261516571045,-4.152506351470947,-4.799864768981934,-3.8170292377471924,-5.514367580413818,-6.735042095184326,-5.169944763183594,-5.731710910797119,-5.006152629852295,-5.4880146980285645,-4.911745548248291,-6.881042003631592,-6.922119140625,-6.554737091064453,-7.605835437774658,-6.15829610824585,-6.736941814422607,-7.579972267150879,-7.245768070220947,-4.940133094787598,-5.331943511962891,-6.684054374694824,-5.419356822967529,-5.640146255493164,-7.081031322479248,-7.294581413269043,-6.66533088684082,-8.308086395263672,-1.178192377090454,-1.468220591545105,-1.687755823135376,-2.1188549995422363,-2.178251266479492,-2.205240488052368,-2.109888792037964,-2.662687063217163,-1.8892358541488647,-1.8328404426574707,-1.9042514562606812,-1.8076711893081665,-2.0627458095550537,-2.960297107696533,-2.0074098110198975,-2.84623122215271,-3.1445155143737793,-3.078295946121216,-3.785092353820801,-1.974778175354004,-2.240762233734131,-1.782306432723999,-2.2271130084991455,-1.657062292098999,-1.9849971532821655,-1.689670205116272,-2.229739189147949,-2.335843801498413,-2.0545573234558105,-2.074568510055542,-2.6265439987182617,-3.111182689666748,-2.4889824390411377,-2.6349916458129883,-2.8525946140289307,-3.511427164077759,-2.9099133014678955,-2.8574302196502686,-3.347917318344116,-3.024360418319702,-4.388440132141113,-3.635120153427124,-4.897220134735107,-3.7539525032043457,-2.591803789138794,-3.0329902172088623,-3.994184732437134,-4.388440132141113,-5.108038425445557,-1.9656215906143188,-2.2708394527435303,-2.639531135559082,-2.6575324535369873,-2.203488349914551,-1.7084060907363892,-5.833066940307617,-6.655587673187256,-6.093654155731201,-1.9463146924972534,-5.155975818634033,-3.0929043292999268,-2.4296376705169678,-2.7086613178253174,-2.930830478668213,-3.430485725402832,-3.578983783721924,-3.0667738914489746,-3.3708949089050293,-3.715021848678589,-3.8666648864746094,-3.6848385334014893,-4.037737846374512,-4.621581077575684,-5.311896800994873,-4.6610188484191895,-2.724069356918335,-2.7448580265045166,-6.526562690734863,-4.587184429168701,-3.1370785236358643,-3.276394844055176,-2.667175531387329,-2.5523335933685303,-3.208024263381958,-3.3157718181610107,-2.459958553314209,-2.870258331298828,-3.694016933441162,-4.776819229125977,-5.755012512207031,-3.868790626525879,-4.9819536209106445,-5.8386921882629395,-4.765989303588867,-5.68750524520874,-5.457382678985596,-5.4958086013793945,-6.291233062744141,-5.65073299407959,-5.36174201965332,-5.491986274719238,-6.04989767074585,-5.244652271270752,-6.25745153427124,-5.466961860656738,-5.595893859863281,-5.676501274108887,-6.072147369384766,-6.160078048706055,-5.130326747894287,-6.8678178787231445,-6.28027868270874,-6.148545742034912,-6.068840980529785,-6.9226884841918945,-6.188719749450684,-7.255788803100586,-7.00148344039917,-6.505483150482178,-6.619489669799805,-7.476499080657959,-6.976536273956299,-7.882375717163086,-7.2725911140441895,-7.8970441818237305,-7.706000804901123,-8.037285804748535,-7.91480827331543,-8.847006797790527,-8.00639820098877,-9.930646896362305,-5.626089572906494,-4.444261074066162,-4.7700581550598145,-5.551693439483643,-1.1074492931365967,-0.5840873718261719,-0.8557887673377991,-1.9479243755340576,-0.6490472555160522,-1.1187366247177124,-0.8445292115211487,-1.1094019412994385,-0.3568764626979828,-4.264913082122803,-1.2301661968231201,-1.5397180318832397,-0.6408449411392212,-0.9208235144615173,-1.2054426670074463,-1.3253597021102905,-1.2667953968048096,-0.949700653553009,-1.2809348106384277,-0.7181134819984436,-0.9805190563201904,-0.8706653714179993,-1.7863006591796875,-4.264913082122803,-1.7044563293457031,-1.4314193725585938,-1.4868543148040771,-1.5322755575180054,-1.3824940919876099,-1.2780766487121582,-1.6532974243164062,-1.6385111808776855,-1.2854082584381104,-1.1740037202835083,-1.1052632331848145,-1.1543703079223633,-4.264913082122803,-3.494784116744995,-2.287235975265503,-1.5970293283462524,-1.0198465585708618,-1.9881715774536133,-0.4219919443130493,-2.2322916984558105,-4.264913082122803,-1.1390386819839478,-1.3939062356948853,-4.264913082122803,-2.205702066421509,-2.6668131351470947,-0.06436821818351746,-0.09992557764053345,-0.641219437122345,-1.4639627933502197,-0.40895891189575195,-1.4282909631729126,-0.35278937220573425,-1.7574653625488281,-1.3705486059188843,-1.5859187841415405,-2.634643077850342,-3.080829620361328,-2.620469093322754,-3.3859195709228516,-3.1151933670043945,-1.6517224311828613,-2.249518871307373,-0.17554500699043274,-1.4381346702575684,-1.6429165601730347,-2.549084424972534,-2.549084424972534,0.08099853247404099,0.24302233755588531,-1.527684211730957,-1.554922103881836,-0.18150967359542847,-0.9770277142524719,-1.365750789642334,-1.452797532081604,-1.8414381742477417,-1.5300488471984863,-3.436159610748291,-2.1374130249023438,-1.428889513015747,-1.5219248533248901,-1.6331396102905273,-2.1930928230285645,-0.7759718298912048,-3.436159610748291,-3.895665407180786,-1.6207029819488525,-4.263359069824219,0.14904078841209412,0.19152584671974182,-1.1360653638839722,-0.6338238716125488,-2.3497257232666016,-1.109246850013733,-4.873830318450928,-4.873830318450928,-0.24350181221961975,-1.5357497930526733,-1.6976326704025269,-2.626811981201172,-2.783895254135132,-1.316127896308899,-2.321901798248291,-4.873830318450928,-2.326998472213745,-2.126988172531128,-0.5451247692108154,-2.2781271934509277,-1.0995382070541382,-1.663588047027588,-2.125702142715454,-1.7430377006530762,-4.873830318450928,-3.3285317420959473,-1.6914764642715454,-1.8889436721801758,-1.0200587511062622,0.4059051275253296,-0.23212024569511414,-0.6932563185691833,-0.7495948076248169,-0.32241666316986084,-1.0988801717758179,-1.151648998260498,-1.134775161743164,-1.2599848508834839,-1.7862625122070312,-2.0256423950195312,-1.7126116752624512,-0.9312435388565063,-2.068814277648926,-2.403461217880249,-2.0848605632781982,-1.8527793884277344,-3.588089942932129,-4.362377643585205,-4.065668106079102,-1.292168378829956,-4.065668106079102,-4.065668106079102,-0.492042601108551,-1.0065643787384033,-0.6554000973701477,-2.4060261249542236,-2.021278142929077,-2.860557794570923,-3.1641812324523926,-4.289104461669922,-6.070785045623779,-4.8349714279174805,-0.3305325508117676,-1.1694786548614502,-0.7621282339096069,-1.843996286392212,-1.4947446584701538,-1.41599702835083,-0.9061982035636902,-1.8028253316879272,-1.263688564300537,-1.1640126705169678,-1.0455539226531982,-2.774432420730591,-1.3180805444717407,-3.6480350494384766,-4.12204647064209,-4.231889247894287,-1.3582912683486938,-0.022012906149029732,-1.4647459983825684,-1.3184789419174194,-4.887099266052246,-0.4391767382621765,-0.13423095643520355,0.06063834950327873,-2.9745032787323,-3.018512487411499,-3.553748846054077,-2.8583805561065674,-4.113079071044922,-4.34196662902832,-4.169028282165527,-3.643047571182251,-3.69022536277771,-3.497478723526001,-3.610947370529175,-3.4961540699005127,-2.7581887245178223,-3.018512487411499,-3.4137392044067383,-3.7475249767303467,-4.428482532501221,-1.812610387802124,-1.4867674112319946,-0.7729224562644958,-1.2040801048278809,-1.248477578163147,-2.8273463249206543,-0.7337514758110046,-0.4153001606464386,-1.3939486742019653,-0.23466011881828308,-1.6121207475662231,-2.113475799560547,-1.8894379138946533,-4.520258903503418,-1.7925779819488525,-0.15483622252941132,-2.5052804946899414,-2.5220134258270264,-1.6452357769012451,-6.543625831604004,-2.5826542377471924,-1.4441684484481812,-1.2798749208450317,-3.3321399688720703,-0.12911322712898254,-2.2392802238464355,-2.074686050415039,-2.0301666259765625,-0.5343373417854309,-0.7319477200508118,-0.8868855834007263,-0.8625536561012268,-1.2459825277328491,-1.1499041318893433,-1.625115156173706,-2.632464647293091,-2.9395673274993896,-2.304727554321289,-3.3072898387908936,-2.0969717502593994,-0.45440423488616943,-0.7698479294776917,-0.5142314434051514,-0.4740782380104065,-0.48901814222335815,0.4408934712409973,-0.3048977553844452,-0.8630016446113586,-1.7794344425201416,0.038696348667144775,-0.9097303748130798,-0.4480418562889099,0.3716341257095337,-0.726102888584137,0.21020926535129547,-3.709307909011841,-4.406096458435059,-1.0203903913497925,-1.7724610567092896,-1.7808880805969238,-3.6332547664642334,-1.2108358144760132,-1.038887858390808,-0.6759921908378601,-1.4324016571044922,0.42576736211776733,-3.071669101715088,-1.6611523628234863,-2.867259979248047,-3.18375301361084,-1.098340392112732,-4.342002868652344,-2.3620753288269043,-4.066603183746338,-4.0847978591918945,-2.358903646469116,-1.6781306266784668,-0.13218949735164642,-4.517373561859131,-1.996034026145935,-3.9959795475006104,-2.3270015716552734,-3.6316611766815186,-1.4836429357528687,-1.6502697467803955,-2.508788585662842,-0.8463662266731262,-4.285862445831299,-2.4513373374938965,-2.8408362865448,-1.9464651346206665,-4.6916351318359375,-3.024153232574463,-2.5179195404052734,-2.0146002769470215,-3.5809237957000732,-2.2256646156311035,-2.7651357650756836,-2.6292240619659424,-2.059890031814575,-3.3360867500305176,-2.4838595390319824,-2.965120553970337,-2.4505667686462402,-1.604386806488037,-2.430610418319702,-1.8126482963562012,-2.226140022277832,-5.0831756591796875,-2.4739584922790527,-2.207655191421509,-4.0676140785217285,-2.623356580734253,-2.265329360961914,-1.323778510093689,0.543237030506134,-0.9726728200912476,-2.547603130340576,-2.7967216968536377,-3.1391916275024414,-1.325573444366455,-3.8607282638549805,-2.9361884593963623,-3.044365882873535,-2.5959270000457764,-2.7825889587402344,-3.7978246212005615,-2.313243865966797,-3.491619825363159,-3.546542167663574,-4.133540630340576,-2.7908082008361816,-4.436686992645264,-3.7276415824890137,-3.079826831817627,-3.2464065551757812,-2.532047986984253,-1.5342477560043335,-3.635042667388916,-4.373437404632568,-2.872556447982788,-5.027786731719971,-2.2234201431274414,-2.0190834999084473,-3.4799306392669678,-2.3924126625061035,-0.6464341878890991,-1.1980183124542236,0.02303152158856392,-1.1259044408798218,-1.1019810438156128,-2.7504539489746094,-1.1152803897857666,-3.5300562381744385,0.623227596282959,-1.115794062614441,0.8967414498329163,0.2865058183670044,-0.37481048703193665,-0.6320878267288208,0.5609681010246277,-0.8500978946685791,0.944487988948822,-1.051853060722351,-2.3150229454040527,-2.813127040863037,-2.6089344024658203,-0.27354976534843445,-1.499785304069519,-0.9474438428878784,0.518194317817688,-1.3581264019012451,-0.6695889830589294,-0.07122057676315308,-0.6498165130615234,0.352867066860199,-0.13022476434707642,-0.665870726108551,-1.1478716135025024,0.012171316891908646,-1.0824084281921387,0.16157026588916779,0.1402798891067505,-1.2481456995010376,-2.03651762008667,-1.8586469888687134,-1.9121434688568115,-2.1479403972625732,-2.687333583831787,-2.056335210800171,-1.7157596349716187,-2.1401686668395996,-2.6025187969207764,-2.8553853034973145,-2.3471450805664062,-1.0030338764190674,-1.8360155820846558,-0.5627323985099792,-3.138162136077881,-1.892307162284851,-1.929982304573059,-2.404762029647827,-1.927917718887329,-1.962047815322876,-0.7918878793716431,-1.8874553442001343,-1.8967194557189941,-2.59700608253479,-2.0825111865997314,-4.099753379821777,-4.18679141998291,-3.376058578491211,-3.5286107063293457,-3.7161269187927246,-4.026898384094238,-3.360199451446533,-3.5623538494110107,-3.5987045764923096,-3.3845250606536865,-3.1129801273345947,-2.481541872024536,-4.723852157592773,-3.1923389434814453,-4.535590648651123,-5.843477249145508,-5.114421844482422,-4.026052474975586,-2.8998007774353027,-2.7204477787017822,-3.50416898727417,-4.041652679443359,-1.0227882862091064,-1.3453266620635986,-1.6539806127548218,-1.6960455179214478,-1.776206612586975,-2.1198673248291016,-2.0426363945007324,-4.669909477233887,-1.3208394050598145,-6.139462471008301,-4.529548645019531,-4.725513935089111,-4.558964252471924,-4.287978172302246,-3.306295394897461,-4.66478157043457,-4.560111045837402,-4.356207847595215,-5.732903003692627,-5.3882622718811035,-3.6352648735046387,-3.6344499588012695,-3.7160842418670654,-3.7160842418670654,-2.774338483810425,-4.845580577850342,-0.7900989055633545,-5.4269938468933105,-1.100764513015747,-1.7827261686325073,-1.1083567142486572,-2.802555561065674,-2.0019619464874268,-1.675959825515747,-2.5240018367767334,-2.4431614875793457,-3.239957571029663,-3.974937677383423,-3.3565030097961426,-6.3090643882751465,-1.7298030853271484,-3.1460413932800293,-2.7560861110687256,-3.3053979873657227,-3.028813123703003,-3.558718204498291,-3.971386671066284,-2.6361000537872314,-3.1470019817352295,-3.259079933166504,-1.83284592628479,-3.5566940307617188,-3.1844072341918945,-3.6648693084716797,-2.7316627502441406,-2.7127718925476074,-1.0352728366851807,-2.6251800060272217,-2.3708536624908447,-4.843750476837158,-0.8290698528289795,-3.7792067527770996,-0.5560937523841858,-2.9145700931549072,0.5172063112258911,-1.4655226469039917,-1.7212672233581543,-3.039670944213867,-1.0738612413406372,-3.2513537406921387,-3.842773675918579,-1.5096964836120605,-4.759267807006836,-4.759267807006836,-4.759267807006836,-3.4875996112823486,-1.694029450416565,-2.6994307041168213,-1.0801764726638794,-1.7631433010101318,-2.3084399700164795,-1.9458998441696167,-1.2324795722961426,-1.9128193855285645,-3.3781442642211914,-4.120675086975098,-4.030434608459473,-2.078638792037964,-4.72059965133667,-4.9811015129089355,-4.863513946533203,-2.7713940143585205,-2.1956522464752197,-1.144649863243103,-0.7243250012397766,-1.0300862789154053,-0.23232288658618927,-2.537271022796631,-0.6232984066009521,0.5165048241615295,-1.0714372396469116,-2.0745275020599365,-0.1847570687532425,-0.3487047255039215,-0.5656517148017883,-1.1018489599227905,-1.1329339742660522,-1.9027401208877563,0.14945544302463531,-0.1871718168258667,0.4937102794647217,0.1643967181444168,-1.9967966079711914,-1.7545537948608398,0.1696687787771225,0.02761889435350895,-1.2385286092758179,-2.687041997909546,-2.297149419784546,-1.8064507246017456,-1.0781453847885132,-2.1441538333892822,-0.6883423924446106,-2.4711527824401855,-4.719557762145996,-0.41640859842300415,-2.1853384971618652,-0.8280417919158936,-2.4881250858306885,-0.6384308338165283,-1.8195629119873047,-0.45132336020469666,-1.0794545412063599,-0.9603967070579529,-1.7629586458206177,0.622812807559967,-5.726032257080078,-2.3910293579101562,-3.107268810272217,-2.7325828075408936,-0.62595134973526,-0.1931159943342209,-0.38008636236190796,-1.088444471359253,-0.9792685508728027,-2.0069496631622314,-2.0620999336242676,-0.9511351585388184,-1.2011457681655884,-1.8650245666503906,-1.9176138639450073,-1.7084671258926392,-2.150088310241699,-2.252802610397339,-3.3847811222076416,-2.4109299182891846,-3.024230718612671,-3.1103549003601074,-2.206653594970703,-2.4326817989349365,-3.198838949203491,-3.4637041091918945,-2.7776243686676025,-2.054075241088867,-2.770371198654175,-1.3905137777328491,-1.7165539264678955,-1.8553262948989868,-1.5640794038772583,-1.4499417543411255,-1.5976096391677856,-0.5402631759643555,-1.3905651569366455,-1.6122658252716064,-0.6496814489364624,-4.030760288238525,-1.8389313220977783,-1.5910147428512573,-1.4320789575576782,-0.8830068111419678,-2.459352731704712,-4.050243854522705,-3.7278285026550293,-5.4395318031311035,-4.022721767425537,-3.3847811222076416,-1.3560596704483032,-2.2754344940185547,-2.05960750579834,-3.041106700897217,-1.8262799978256226,-2.676955461502075,-2.8828516006469727,-1.7060065269470215,-1.276329517364502,-2.519054889678955,-1.6114423274993896,-2.4055697917938232,-1.7772724628448486,-0.6819428205490112,-0.7772801518440247,-2.530730724334717,-2.5402181148529053,-3.3847811222076416,-5.694701194763184,-5.0957489013671875,-2.747157096862793,-4.75764799118042,-1.3019709587097168,-3.758913040161133,-3.614886522293091,-3.1728994846343994,-2.216679573059082,-1.3444865942001343,-2.876447916030884,-3.221773147583008,-2.995473861694336,-2.9911420345306396,-1.4109934568405151,-3.083721160888672,-3.2230634689331055,-5.043396472930908,-0.15166951715946198,-2.2503836154937744,-1.129314661026001,-3.177671194076538,-1.7606399059295654,-2.4921727180480957,-2.093625545501709,-2.711789131164551,-3.038210391998291,-1.8424222469329834,-2.7140698432922363,-3.2972469329833984,-1.9415605068206787,-2.087177038192749,-2.7454071044921875,-2.982250928878784,-3.5666074752807617,-0.8148857355117798,-2.45953106880188,-2.615901470184326,-0.1958649903535843,-2.1472625732421875,-2.819697618484497,-5.305897235870361,-2.406728982925415,-1.2305294275283813,-2.9038376808166504,-1.6135611534118652,-2.6998798847198486,-4.006109237670898,-4.362377643585205,-3.8601458072662354,-2.0898351669311523,-3.8055288791656494,-3.6801111698150635,-3.8338446617126465,-3.177645683288574,-3.330509901046753,-2.078737735748291,-3.8983519077301025,-2.5434577465057373,-1.8859142065048218,-3.6825623512268066,-3.6365480422973633,-3.487168788909912,-3.2249014377593994,-4.283018112182617,-4.035367488861084,-3.86350154876709,-3.1218101978302,-2.800260305404663,-1.7492119073867798,-3.0395126342773438,-3.677354574203491,-3.6844534873962402,-2.9650120735168457,-1.6976813077926636,-4.362377643585205,-5.927952289581299,-3.51777982711792,-6.646682262420654,-4.994495868682861,-5.345769882202148,-4.144031047821045,-4.958847522735596,-3.069575071334839,-2.081493854522705,-3.6655094623565674,-3.417208433151245,-3.750216484069824,-3.0697507858276367,-1.9517560005187988,-2.101963996887207,-5.122186183929443,-5.839733600616455,-2.6219711303710938,-2.072814464569092,-4.244150161743164,-2.7908082008361816,-4.419620990753174,-4.264913082122803,-3.9950807094573975,-4.552131175994873,-3.462944746017456,-3.7131264209747314,-3.511658191680908,-3.496755361557007,-2.658078670501709,-3.4391236305236816,-3.2998270988464355,-3.1130213737487793,-2.5168654918670654,-1.9634183645248413,-1.8052300214767456,-2.7295234203338623,-2.9127511978149414,-4.873830318450928,-3.4586308002471924,-2.9875001907348633,-3.99458909034729,-4.264913082122803,-4.921290397644043,-4.750346660614014,-5.647298812866211,-3.434561014175415,-3.7475790977478027,-0.7485884428024292,-1.5428061485290527,-4.726381778717041,-5.309823036193848,-4.412337779998779,-1.7279006242752075,-3.6632161140441895,-4.465612888336182,-4.497042179107666,-4.873830318450928,-3.669187545776367,-3.36433482170105,-3.669841766357422,-4.152651786804199,-3.9232475757598877,-4.139514923095703,-3.1786084175109863,-3.6640825271606445,-4.318904876708984,-3.6848714351654053,-3.2536370754241943,-5.12932825088501,-3.9871206283569336,-3.637709379196167,-4.040743827819824,-2.99715256690979,-0.8202764987945557,-4.4972405433654785,-6.238535404205322,-3.0039753913879395,-3.6727700233459473,-2.853379964828491,-4.147736549377441,-3.553748846054077,-3.5069773197174072,-3.178441047668457,-3.409480094909668,-2.685922145843506,-4.580343246459961,-3.85261869430542,-5.553661823272705,-4.914090633392334,-4.278916358947754,-3.7516748905181885,-3.868772506713867,-1.0023274421691895,-4.644052505493164,-3.1260015964508057],\"yaxis\":\"y\",\"type\":\"scattergl\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"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\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"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\"]]}],\"heatmap\":[{\"type\":\"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\"]]}],\"heatmapgl\":[{\"type\":\"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\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"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\"]]}],\"surface\":[{\"type\":\"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\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"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\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"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\"]],\"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\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"x\"}},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"y\"}},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('7feed9ad-d895-4a5e-a503-83d87a5e7a8e');\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",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"fig = px.scatter(x=trainY, y=pred_train)\n",
"fig.show()"
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "e39be360",
"metadata": {},
"outputs": [],
"source": [
"test_X = pd.DataFrame([mol2numpy_fp(m) for m in test])\n",
"pred_test = manager.predict(test_X)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "67ef84c5",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "x=%{x}<br>y=%{y}<extra></extra>",
"legendgroup": "",
"marker": {
"color": "#636efa",
"symbol": "circle"
},
"mode": "markers",
"name": "",
"orientation": "v",
"showlegend": false,
"type": "scatter",
"x": [
-3.68,
-4.26,
-2.68,
-2.59,
-2.09,
-2.15,
-3.66,
-2.77,
-3.4,
-3.04,
-4.12,
-5.21,
-4.62,
-4.17,
-4.29,
-6.35,
-6.57,
-8.6,
-8.06,
-2.68,
-6.2,
-7.92,
-1.17,
-2.31,
-1.06,
-1.74,
-1.47,
-2.09,
-2.15,
-2.37,
-2.7,
-2.89,
-5.06,
-4.43,
-1.32,
-6.32,
-4.91,
-2.55,
-3.19,
-3.54,
-4.5,
-5.65,
-2,
-5.2,
-5.28,
-6.02,
-6.29,
-7.16,
-6.8,
-7.91,
-7.92,
-7.68,
-8.01,
-9.15,
-7.2,
-4.4,
-0.29,
-0.4,
-0.39,
-1.14,
-0.62,
-1.55,
-1.6,
-1.22,
-0.72,
-1.6,
-3.63,
-1.2,
0.62,
-0.68,
-2.22,
-2.28,
-0.01,
-3.17,
-0.1,
-0.6,
-2.58,
-0.99,
-3.12,
-0.2,
-3.44,
-2.14,
-2.48,
-2.65,
-3.22,
-5.33,
0.15,
-0.66,
-1.28,
-1.92,
-2.31,
-3.8,
-1.85,
-4.4,
-0.09,
-0.24,
-1.34,
-1.85,
-1.6,
-0.42,
-2.97,
-4.37,
-3.75,
-3.43,
-1.82,
-2.35,
-1.06,
-2.34,
-3.31,
-6.29,
-1.1,
-2.75,
-1.28,
-1.92,
-1.92,
0.4,
-1.45,
-0.84,
-1.28,
-0.17,
-3.18,
-2.16,
-2.23,
-2.12,
-3.66,
-2.57,
-4.16,
-2.36,
0.81,
-2.21,
-3.28,
-4.86,
-4.61,
-2.41,
-2.09,
-2.32,
-2.62,
-2.54,
-2.43,
-3.7,
-1.35,
-0.97,
-1.13,
1.07,
-0.4,
1,
-0.72,
0.85,
-3.28,
1.13,
0.96,
-1.03,
-0.62,
-3.54,
-2.8,
-1.96,
-1.37,
-5.64,
-4.44,
-3,
-3.26,
-0.6,
0.32,
-1.66,
-0.22,
-4.57,
-4.04,
-6.62,
-4.35,
0.74,
-2.84,
-2.69,
-4.11,
-3.8,
-3.95,
-2.75,
-2.57,
-4.08,
-2.72,
-1.78,
-3.26,
-7.11,
-1.4,
-1.5,
-2.92,
-4.02,
-1.77,
-3.46,
-1.14,
-0.74,
0.04,
1.02,
-1.26,
0.39,
-2.36,
-1.56,
-3.9,
0.49,
-3.27,
-1.11,
-1.55,
-2.15,
-5.43,
-2.51,
-2.34,
-2.88,
-2.33,
-1.12,
-1.6,
-4.27,
-2.61,
-2.22,
-2.41,
-2.17,
-2.75,
-2.87,
-3.51,
-1.91,
-1.99,
-2.08,
-1.85,
-2.49,
-1.94,
-5.47,
-1.2,
-3.05,
-3.02,
-5.03,
-1.73,
-2.57,
-2.59,
-4.21,
-5.53,
-4.16,
-6.62,
-2.28,
-2.85,
-4.11,
-2.64,
-3.08,
-3.59,
-5.69,
-2.73,
-2.7,
-4.38,
-2.6,
-4.95,
-4.43,
-2.63,
-5.41,
-4.4,
-3.8,
-5.66,
-3.66,
-0.5,
-5.09,
-7.32
],
"xaxis": "x",
"y": [
-2.628267288208008,
-2.618486166000366,
-2.5475456714630127,
-2.5394434928894043,
-2.3589444160461426,
-2.0848302841186523,
-4.663051605224609,
-3.1967735290527344,
-2.755316972732544,
-3.7877960205078125,
-3.921083688735962,
-4.830660820007324,
-3.140052080154419,
-4.6129255294799805,
-4.4511871337890625,
-5.738768100738525,
-4.109097480773926,
-5.93691349029541,
-7.004007339477539,
-4.669178009033203,
-4.855896472930908,
-6.17063570022583,
-1.9972542524337769,
-3.185037851333618,
-1.5820807218551636,
-2.0967578887939453,
-2.0195844173431396,
-1.6063951253890991,
-2.2447423934936523,
-2.814666748046875,
-1.9795390367507935,
-2.786907196044922,
-4.897220134735107,
-4.897220134735107,
-2.3251776695251465,
-5.833852291107178,
-2.3603601455688477,
-3.1871232986450195,
-3.88716721534729,
-3.6127007007598877,
-3.6346523761749268,
-6.354608058929443,
-2.9207568168640137,
-5.417196273803711,
-4.4509711265563965,
-5.046539783477783,
-6.098480224609375,
-6.293615341186523,
-5.723790168762207,
-5.941246509552002,
-8.1111478805542,
-6.798840522766113,
-5.598241806030273,
-5.430479526519775,
-4.6807475090026855,
-6.309267044067383,
-1.2440307140350342,
-0.9843104481697083,
-0.8329867124557495,
-1.2855231761932373,
-0.5577819347381592,
-1.766444444656372,
-0.8645551800727844,
-1.1052632331848145,
-0.5959300398826599,
-1.6299712657928467,
-4.264913082122803,
-1.6609461307525635,
-1.2771817445755005,
-0.9647654294967651,
-1.908959150314331,
-4.132941722869873,
-0.674636960029602,
-2.549084424972534,
-1.5446208715438843,
-1.627063274383545,
-3.436159610748291,
-1.2988721132278442,
-1.695204496383667,
-0.18993201851844788,
-4.873830318450928,
-2.164172410964966,
-2.6171884536743164,
-3.743635416030884,
-2.5048067569732666,
-4.873830318450928,
-0.22916780412197113,
-0.6014283895492554,
-1.4463711977005005,
-1.3836760520935059,
-2.4333512783050537,
-4.065668106079102,
-1.3538085222244263,
-4.477123737335205,
-1.2327362298965454,
-1.3673526048660278,
-2.1513326168060303,
-2.50222110748291,
-2.550194263458252,
-1.7688533067703247,
-2.879687786102295,
-3.6240768432617188,
-3.3787925243377686,
-2.6470134258270264,
-1.9039589166641235,
-2.8092589378356934,
-2.301799774169922,
-3.5921847820281982,
-4.031704425811768,
-6.093654155731201,
-3.3321399688720703,
-3.3321399688720703,
-1.9971956014633179,
-1.8985481262207031,
-3.989103317260742,
-0.5590771436691284,
-0.7717954516410828,
-0.5183829069137573,
-1.1797069311141968,
-1.0132381916046143,
-1.9039126634597778,
-0.8496410846710205,
-1.7788066864013672,
-1.5428061485290527,
-3.200922727584839,
-2.5356357097625732,
-3.3428025245666504,
-1.376062273979187,
-1.9486764669418335,
-1.8606538772583008,
-2.7681503295898438,
-1.8615577220916748,
-5.470673561096191,
-2.719205617904663,
-2.6469216346740723,
-2.8682608604431152,
-2.4249653816223145,
-2.4472179412841797,
-2.544891357421875,
-2.907005548477173,
-3.5609734058380127,
-0.5312427282333374,
-1.755447268486023,
-0.10974051803350449,
-0.9878448247909546,
-0.24901264905929565,
-1.1081950664520264,
-0.4825313091278076,
-3.834808826446533,
-0.1537383496761322,
-0.17955821752548218,
-1.8335418701171875,
-0.8728355169296265,
-5.21238374710083,
-2.203136682510376,
-1.9803037643432617,
-1.3900538682937622,
-5.660616397857666,
-4.475711822509766,
-3.4998619556427,
-2.9906229972839355,
-1.9364328384399414,
-0.21211053431034088,
-1.3071335554122925,
-2.160313367843628,
-4.472824573516846,
-4.418602466583252,
-5.808767318725586,
-3.762725830078125,
-1.801571011543274,
-3.437852144241333,
-2.4081838130950928,
-3.5569798946380615,
-4.565813064575195,
-2.5256130695343018,
-2.191500663757324,
-0.9321224689483643,
-4.406651973724365,
-4.534457683563232,
-2.713074207305908,
-4.13456392288208,
-4.211481094360352,
-2.7306957244873047,
-2.229433298110962,
-3.337045431137085,
-4.417716026306152,
-1.209881067276001,
-1.9935028553009033,
-1.142002820968628,
-0.27198368310928345,
-1.7029366493225098,
-0.4652950167655945,
-1.8736047744750977,
0.2054486721754074,
-1.0737075805664062,
-1.9043834209442139,
-1.144580602645874,
-1.8746662139892578,
-2.2779922485351562,
-1.0822685956954956,
-1.6989237070083618,
-3.050097942352295,
-5.073766708374023,
-3.1504294872283936,
-2.073564291000366,
-1.6798969507217407,
-3.070861339569092,
-0.7820027470588684,
-1.681027889251709,
-4.022721767425537,
-3.207103967666626,
-2.830432891845703,
-2.5883381366729736,
-2.4123287200927734,
-4.873830318450928,
-3.276683807373047,
-2.4588751792907715,
-2.6146433353424072,
-1.646362543106079,
-2.0221264362335205,
-2.93912935256958,
-2.706845283508301,
-2.9588842391967773,
-3.9716498851776123,
-1.5423376560211182,
-3.0608999729156494,
-2.42240834236145,
-4.224332809448242,
-1.770944356918335,
-3.791990041732788,
-4.477478504180908,
-3.8164079189300537,
-5.690669536590576,
-2.882525682449341,
-5.839338779449463,
-3.1999168395996094,
-2.476552963256836,
-2.7505388259887695,
-2.538146495819092,
-2.470914840698242,
-2.2123935222625732,
-4.441420078277588,
-3.5476484298706055,
-2.1903750896453857,
-3.309870958328247,
-1.0679752826690674,
-1.6241015195846558,
-3.235281467437744,
-3.529327392578125,
-2.858030080795288,
-3.901027202606201,
-4.720963954925537,
-3.9076731204986572,
-3.6738975048065186,
-1.700717568397522,
-4.845242500305176,
-4.841404914855957
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"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,
"#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,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"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,
"#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,
"#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
},
"autotypenumbers": "strict",
"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,
"#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,
"#f0f921"
]
],
"sequentialminus": [
[
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,
"#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
}
}
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "x"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "y"
}
}
}
},
"text/html": [
"<div> <div id=\"a05ccc39-396c-46e4-bbba-075dfa3974f2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"a05ccc39-396c-46e4-bbba-075dfa3974f2\")) { Plotly.newPlot( \"a05ccc39-396c-46e4-bbba-075dfa3974f2\", [{\"hovertemplate\":\"x=%{x}<br>y=%{y}<extra></extra>\",\"legendgroup\":\"\",\"marker\":{\"color\":\"#636efa\",\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"orientation\":\"v\",\"showlegend\":false,\"x\":[-3.68,-4.26,-2.68,-2.59,-2.09,-2.15,-3.66,-2.77,-3.4,-3.04,-4.12,-5.21,-4.62,-4.17,-4.29,-6.35,-6.57,-8.6,-8.06,-2.68,-6.2,-7.92,-1.17,-2.31,-1.06,-1.74,-1.47,-2.09,-2.15,-2.37,-2.7,-2.89,-5.06,-4.43,-1.32,-6.32,-4.91,-2.55,-3.19,-3.54,-4.5,-5.65,-2.0,-5.2,-5.28,-6.02,-6.29,-7.16,-6.8,-7.91,-7.92,-7.68,-8.01,-9.15,-7.2,-4.4,-0.29,-0.4,-0.39,-1.14,-0.62,-1.55,-1.6,-1.22,-0.72,-1.6,-3.63,-1.2,0.62,-0.68,-2.22,-2.28,-0.01,-3.17,-0.1,-0.6,-2.58,-0.99,-3.12,-0.2,-3.44,-2.14,-2.48,-2.65,-3.22,-5.33,0.15,-0.66,-1.28,-1.92,-2.31,-3.8,-1.85,-4.4,-0.09,-0.24,-1.34,-1.85,-1.6,-0.42,-2.97,-4.37,-3.75,-3.43,-1.82,-2.35,-1.06,-2.34,-3.31,-6.29,-1.1,-2.75,-1.28,-1.92,-1.92,0.4,-1.45,-0.84,-1.28,-0.17,-3.18,-2.16,-2.23,-2.12,-3.66,-2.57,-4.16,-2.36,0.81,-2.21,-3.28,-4.86,-4.61,-2.41,-2.09,-2.32,-2.62,-2.54,-2.43,-3.7,-1.35,-0.97,-1.13,1.07,-0.4,1.0,-0.72,0.85,-3.28,1.13,0.96,-1.03,-0.62,-3.54,-2.8,-1.96,-1.37,-5.64,-4.44,-3.0,-3.26,-0.6,0.32,-1.66,-0.22,-4.57,-4.04,-6.62,-4.35,0.74,-2.84,-2.69,-4.11,-3.8,-3.95,-2.75,-2.57,-4.08,-2.72,-1.78,-3.26,-7.11,-1.4,-1.5,-2.92,-4.02,-1.77,-3.46,-1.14,-0.74,0.04,1.02,-1.26,0.39,-2.36,-1.56,-3.9,0.49,-3.27,-1.11,-1.55,-2.15,-5.43,-2.51,-2.34,-2.88,-2.33,-1.12,-1.6,-4.27,-2.61,-2.22,-2.41,-2.17,-2.75,-2.87,-3.51,-1.91,-1.99,-2.08,-1.85,-2.49,-1.94,-5.47,-1.2,-3.05,-3.02,-5.03,-1.73,-2.57,-2.59,-4.21,-5.53,-4.16,-6.62,-2.28,-2.85,-4.11,-2.64,-3.08,-3.59,-5.69,-2.73,-2.7,-4.38,-2.6,-4.95,-4.43,-2.63,-5.41,-4.4,-3.8,-5.66,-3.66,-0.5,-5.09,-7.32],\"xaxis\":\"x\",\"y\":[-2.628267288208008,-2.618486166000366,-2.5475456714630127,-2.5394434928894043,-2.3589444160461426,-2.0848302841186523,-4.663051605224609,-3.1967735290527344,-2.755316972732544,-3.7877960205078125,-3.921083688735962,-4.830660820007324,-3.140052080154419,-4.6129255294799805,-4.4511871337890625,-5.738768100738525,-4.109097480773926,-5.93691349029541,-7.004007339477539,-4.669178009033203,-4.855896472930908,-6.17063570022583,-1.9972542524337769,-3.185037851333618,-1.5820807218551636,-2.0967578887939453,-2.0195844173431396,-1.6063951253890991,-2.2447423934936523,-2.814666748046875,-1.9795390367507935,-2.786907196044922,-4.897220134735107,-4.897220134735107,-2.3251776695251465,-5.833852291107178,-2.3603601455688477,-3.1871232986450195,-3.88716721534729,-3.6127007007598877,-3.6346523761749268,-6.354608058929443,-2.9207568168640137,-5.417196273803711,-4.4509711265563965,-5.046539783477783,-6.098480224609375,-6.293615341186523,-5.723790168762207,-5.941246509552002,-8.1111478805542,-6.798840522766113,-5.598241806030273,-5.430479526519775,-4.6807475090026855,-6.309267044067383,-1.2440307140350342,-0.9843104481697083,-0.8329867124557495,-1.2855231761932373,-0.5577819347381592,-1.766444444656372,-0.8645551800727844,-1.1052632331848145,-0.5959300398826599,-1.6299712657928467,-4.264913082122803,-1.6609461307525635,-1.2771817445755005,-0.9647654294967651,-1.908959150314331,-4.132941722869873,-0.674636960029602,-2.549084424972534,-1.5446208715438843,-1.627063274383545,-3.436159610748291,-1.2988721132278442,-1.695204496383667,-0.18993201851844788,-4.873830318450928,-2.164172410964966,-2.6171884536743164,-3.743635416030884,-2.5048067569732666,-4.873830318450928,-0.22916780412197113,-0.6014283895492554,-1.4463711977005005,-1.3836760520935059,-2.4333512783050537,-4.065668106079102,-1.3538085222244263,-4.477123737335205,-1.2327362298965454,-1.3673526048660278,-2.1513326168060303,-2.50222110748291,-2.550194263458252,-1.7688533067703247,-2.879687786102295,-3.6240768432617188,-3.3787925243377686,-2.6470134258270264,-1.9039589166641235,-2.8092589378356934,-2.301799774169922,-3.5921847820281982,-4.031704425811768,-6.093654155731201,-3.3321399688720703,-3.3321399688720703,-1.9971956014633179,-1.8985481262207031,-3.989103317260742,-0.5590771436691284,-0.7717954516410828,-0.5183829069137573,-1.1797069311141968,-1.0132381916046143,-1.9039126634597778,-0.8496410846710205,-1.7788066864013672,-1.5428061485290527,-3.200922727584839,-2.5356357097625732,-3.3428025245666504,-1.376062273979187,-1.9486764669418335,-1.8606538772583008,-2.7681503295898438,-1.8615577220916748,-5.470673561096191,-2.719205617904663,-2.6469216346740723,-2.8682608604431152,-2.4249653816223145,-2.4472179412841797,-2.544891357421875,-2.907005548477173,-3.5609734058380127,-0.5312427282333374,-1.755447268486023,-0.10974051803350449,-0.9878448247909546,-0.24901264905929565,-1.1081950664520264,-0.4825313091278076,-3.834808826446533,-0.1537383496761322,-0.17955821752548218,-1.8335418701171875,-0.8728355169296265,-5.21238374710083,-2.203136682510376,-1.9803037643432617,-1.3900538682937622,-5.660616397857666,-4.475711822509766,-3.4998619556427,-2.9906229972839355,-1.9364328384399414,-0.21211053431034088,-1.3071335554122925,-2.160313367843628,-4.472824573516846,-4.418602466583252,-5.808767318725586,-3.762725830078125,-1.801571011543274,-3.437852144241333,-2.4081838130950928,-3.5569798946380615,-4.565813064575195,-2.5256130695343018,-2.191500663757324,-0.9321224689483643,-4.406651973724365,-4.534457683563232,-2.713074207305908,-4.13456392288208,-4.211481094360352,-2.7306957244873047,-2.229433298110962,-3.337045431137085,-4.417716026306152,-1.209881067276001,-1.9935028553009033,-1.142002820968628,-0.27198368310928345,-1.7029366493225098,-0.4652950167655945,-1.8736047744750977,0.2054486721754074,-1.0737075805664062,-1.9043834209442139,-1.144580602645874,-1.8746662139892578,-2.2779922485351562,-1.0822685956954956,-1.6989237070083618,-3.050097942352295,-5.073766708374023,-3.1504294872283936,-2.073564291000366,-1.6798969507217407,-3.070861339569092,-0.7820027470588684,-1.681027889251709,-4.022721767425537,-3.207103967666626,-2.830432891845703,-2.5883381366729736,-2.4123287200927734,-4.873830318450928,-3.276683807373047,-2.4588751792907715,-2.6146433353424072,-1.646362543106079,-2.0221264362335205,-2.93912935256958,-2.706845283508301,-2.9588842391967773,-3.9716498851776123,-1.5423376560211182,-3.0608999729156494,-2.42240834236145,-4.224332809448242,-1.770944356918335,-3.791990041732788,-4.477478504180908,-3.8164079189300537,-5.690669536590576,-2.882525682449341,-5.839338779449463,-3.1999168395996094,-2.476552963256836,-2.7505388259887695,-2.538146495819092,-2.470914840698242,-2.2123935222625732,-4.441420078277588,-3.5476484298706055,-2.1903750896453857,-3.309870958328247,-1.0679752826690674,-1.6241015195846558,-3.235281467437744,-3.529327392578125,-2.858030080795288,-3.901027202606201,-4.720963954925537,-3.9076731204986572,-3.6738975048065186,-1.700717568397522,-4.845242500305176,-4.841404914855957],\"yaxis\":\"y\",\"type\":\"scatter\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"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\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"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\"]]}],\"heatmap\":[{\"type\":\"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\"]]}],\"heatmapgl\":[{\"type\":\"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\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"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\"]]}],\"surface\":[{\"type\":\"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\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"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\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"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\"]],\"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\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"x\"}},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"y\"}},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60}}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('a05ccc39-396c-46e4-bbba-075dfa3974f2');\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",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"fig = px.scatter(x=testY, y=pred_test)\n",
"fig.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "15f136bb",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.15"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment