Skip to content

Instantly share code, notes, and snippets.

@empet
Created March 30, 2017 18:35
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 empet/379b673a52f0a73b97fbd958ef5ce12a to your computer and use it in GitHub Desktop.
Save empet/379b673a52f0a73b97fbd958ef5ce12a to your computer and use it in GitHub Desktop.
{
"cells": [
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<script>requirejs.config({paths: { 'plotly': ['https://cdn.plot.ly/plotly-latest.min']},});if(!window.Plotly) {{require(['plotly'],function(plotly) {window.Plotly=plotly;});}}</script>"
],
"text/vnd.plotly.v1+html": [
"<script>requirejs.config({paths: { 'plotly': ['https://cdn.plot.ly/plotly-latest.min']},});if(!window.Plotly) {{require(['plotly'],function(plotly) {window.Plotly=plotly;});}}</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"This is the format of your plot grid:\n",
"[ (1,1) x1,y1 ] [ (1,2) x2,y2 ]\n",
"\n",
"{'data': [], 'layout': {'yaxis1': {'domain': [0.0, 1.0], 'anchor': 'x1'}, 'yaxis2': {'domain': [0.0, 1.0], 'anchor': 'x2'}, 'xaxis2': {'domain': [0.53, 1.0], 'anchor': 'y2'}, 'xaxis1': {'domain': [0.0, 0.47], 'anchor': 'y1'}}}\n"
]
}
],
"source": [
"# imports\n",
"import numpy as np\n",
"import pandas as pd\n",
"from plotly import tools\n",
"import plotly.graph_objs as go\n",
"from plotly.offline import download_plotlyjs, init_notebook_mode, iplot, plot\n",
"init_notebook_mode(connected=True)\n",
"\n",
"\n",
"# setup some data\n",
"density = 25\n",
"grid_x1 = np.linspace(-1, 1, density)\n",
"grid_x2 = np.linspace(-1, 1, density)\n",
"grid2_x1, grid2_x2 = np.meshgrid(grid_x1, grid_x2)\n",
"\n",
"X = {'x1': grid2_x1.flatten(), 'x2': grid2_x2.flatten()}\n",
"df = pd.DataFrame(X)\n",
"df['sd'] = 1 + 0.5 * df['x1']\n",
"df['y'] = df['x1'] - 0.5 * df['x2']\n",
"df['lb'] = df['y'] - 1.96 * df['sd']\n",
"df['ub'] = df['y'] + 1.96 * df['sd']\n",
"\n",
"# plot\n",
"fig = tools.make_subplots(\n",
" rows=1,\n",
" cols=2,\n",
" print_grid=True,\n",
" #shared_xaxes=True,\n",
" shared_yaxes=False,\n",
" horizontal_spacing=0.06,\n",
")\n",
"print fig \n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"fig.append_trace(\n",
" go.Contour(\n",
" z=df['y'].values.reshape((density, density)),\n",
" x=grid_x1,\n",
" y=grid_x2,\n",
" contours=dict(coloring='heatmap'),\n",
" ncontours=density,\n",
" legendgroup='mean',\n",
" showscale=False,\n",
" ), 1, 1\n",
")\n",
"fig.append_trace(\n",
" go.Contour(\n",
" z=df['sd'].values.reshape((density, density)),\n",
" x=grid_x1,\n",
" y=grid_x2,\n",
" contours=dict(coloring='heatmap'),\n",
" ncontours=density,\n",
" colorscale='Jet',\n",
" legendgroup='sd',\n",
" showscale=False,\n",
" ), 1, 2 \n",
")"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"data": [
{
"contours": {
"coloring": "heatmap"
},
"legendgroup": "mean",
"ncontours": 25,
"showscale": false,
"type": "contour",
"x": [
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1
],
"xaxis": "x1",
"y": [
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1
],
"yaxis": "y1",
"z": [
[
-0.5,
-0.41666666666666663,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666663,
0.25,
0.33333333333333326,
0.41666666666666663,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1,
1.0833333333333333,
1.1666666666666665,
1.25,
1.3333333333333333,
1.4166666666666665,
1.5
],
[
-0.5416666666666667,
-0.4583333333333333,
-0.37500000000000006,
-0.2916666666666667,
-0.20833333333333343,
-0.12500000000000006,
-0.041666666666666685,
0.041666666666666574,
0.12499999999999994,
0.20833333333333331,
0.2916666666666666,
0.37499999999999994,
0.4583333333333333,
0.5416666666666665,
0.6249999999999998,
0.7083333333333333,
0.7916666666666665,
0.8749999999999998,
0.9583333333333333,
1.0416666666666665,
1.1249999999999998,
1.2083333333333333,
1.2916666666666665,
1.3749999999999998,
1.4583333333333333
],
[
-0.5833333333333333,
-0.49999999999999994,
-0.4166666666666667,
-0.3333333333333333,
-0.25000000000000006,
-0.16666666666666669,
-0.08333333333333331,
-5.551115123125783e-17,
0.08333333333333331,
0.16666666666666669,
0.24999999999999994,
0.3333333333333333,
0.4166666666666667,
0.49999999999999994,
0.5833333333333333,
0.6666666666666667,
0.75,
0.8333333333333333,
0.9166666666666667,
1,
1.0833333333333333,
1.1666666666666667,
1.25,
1.3333333333333333,
1.4166666666666667
],
[
-0.625,
-0.5416666666666666,
-0.45833333333333337,
-0.375,
-0.29166666666666674,
-0.20833333333333337,
-0.125,
-0.04166666666666674,
0.04166666666666663,
0.125,
0.20833333333333326,
0.29166666666666663,
0.375,
0.45833333333333326,
0.5416666666666665,
0.625,
0.7083333333333333,
0.7916666666666665,
0.875,
0.9583333333333333,
1.0416666666666665,
1.125,
1.2083333333333333,
1.2916666666666665,
1.375
],
[
-0.6666666666666666,
-0.5833333333333333,
-0.5,
-0.41666666666666663,
-0.33333333333333337,
-0.25,
-0.16666666666666663,
-0.08333333333333337,
0,
0.08333333333333337,
0.16666666666666663,
0.25,
0.33333333333333337,
0.41666666666666663,
0.4999999999999999,
0.5833333333333334,
0.6666666666666666,
0.7499999999999999,
0.8333333333333334,
0.9166666666666666,
0.9999999999999999,
1.0833333333333335,
1.1666666666666665,
1.25,
1.3333333333333335
],
[
-0.7083333333333333,
-0.625,
-0.5416666666666667,
-0.4583333333333333,
-0.37500000000000006,
-0.2916666666666667,
-0.20833333333333331,
-0.12500000000000006,
-0.041666666666666685,
0.041666666666666685,
0.12499999999999994,
0.20833333333333331,
0.2916666666666667,
0.37499999999999994,
0.4583333333333332,
0.5416666666666667,
0.625,
0.7083333333333333,
0.7916666666666667,
0.875,
0.9583333333333333,
1.0416666666666667,
1.125,
1.2083333333333333,
1.2916666666666667
],
[
-0.75,
-0.6666666666666666,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666663,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1,
1.0833333333333333,
1.1666666666666665,
1.25
],
[
-0.7916666666666666,
-0.7083333333333333,
-0.625,
-0.5416666666666666,
-0.45833333333333337,
-0.375,
-0.29166666666666663,
-0.20833333333333337,
-0.125,
-0.04166666666666663,
0.04166666666666663,
0.125,
0.20833333333333337,
0.29166666666666663,
0.3749999999999999,
0.45833333333333337,
0.5416666666666666,
0.6249999999999999,
0.7083333333333334,
0.7916666666666666,
0.8749999999999999,
0.9583333333333334,
1.0416666666666665,
1.125,
1.2083333333333335
],
[
-0.8333333333333333,
-0.75,
-0.6666666666666667,
-0.5833333333333333,
-0.5,
-0.4166666666666667,
-0.3333333333333333,
-0.25000000000000006,
-0.16666666666666669,
-0.08333333333333331,
-5.551115123125783e-17,
0.08333333333333331,
0.16666666666666669,
0.24999999999999994,
0.3333333333333332,
0.4166666666666667,
0.49999999999999994,
0.5833333333333333,
0.6666666666666667,
0.75,
0.8333333333333333,
0.9166666666666667,
1,
1.0833333333333333,
1.1666666666666667
],
[
-0.875,
-0.7916666666666666,
-0.7083333333333334,
-0.625,
-0.5416666666666667,
-0.45833333333333337,
-0.375,
-0.29166666666666674,
-0.20833333333333337,
-0.125,
-0.04166666666666674,
0.04166666666666663,
0.125,
0.20833333333333326,
0.2916666666666665,
0.375,
0.45833333333333326,
0.5416666666666665,
0.625,
0.7083333333333333,
0.7916666666666665,
0.875,
0.9583333333333333,
1.0416666666666665,
1.125
],
[
-0.9166666666666666,
-0.8333333333333333,
-0.75,
-0.6666666666666666,
-0.5833333333333334,
-0.5,
-0.41666666666666663,
-0.33333333333333337,
-0.25,
-0.16666666666666663,
-0.08333333333333337,
0,
0.08333333333333337,
0.16666666666666663,
0.2499999999999999,
0.33333333333333337,
0.41666666666666663,
0.4999999999999999,
0.5833333333333334,
0.6666666666666666,
0.7499999999999999,
0.8333333333333334,
0.9166666666666666,
0.9999999999999999,
1.0833333333333335
],
[
-0.9583333333333333,
-0.875,
-0.7916666666666667,
-0.7083333333333333,
-0.625,
-0.5416666666666667,
-0.4583333333333333,
-0.37500000000000006,
-0.2916666666666667,
-0.20833333333333331,
-0.12500000000000006,
-0.041666666666666685,
0.041666666666666685,
0.12499999999999994,
0.2083333333333332,
0.2916666666666667,
0.37499999999999994,
0.4583333333333332,
0.5416666666666667,
0.625,
0.7083333333333333,
0.7916666666666667,
0.875,
0.9583333333333333,
1.0416666666666667
],
[
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1
],
[
-1.0416666666666665,
-0.9583333333333333,
-0.875,
-0.7916666666666666,
-0.7083333333333334,
-0.625,
-0.5416666666666666,
-0.45833333333333337,
-0.375,
-0.29166666666666663,
-0.20833333333333337,
-0.125,
-0.04166666666666663,
0.04166666666666663,
0.12499999999999989,
0.20833333333333337,
0.29166666666666663,
0.3749999999999999,
0.45833333333333337,
0.5416666666666666,
0.6249999999999999,
0.7083333333333334,
0.7916666666666666,
0.8749999999999999,
0.9583333333333334
],
[
-1.0833333333333333,
-0.9999999999999999,
-0.9166666666666666,
-0.8333333333333333,
-0.75,
-0.6666666666666666,
-0.5833333333333333,
-0.5,
-0.41666666666666663,
-0.33333333333333326,
-0.25,
-0.16666666666666663,
-0.08333333333333326,
0,
0.08333333333333326,
0.16666666666666674,
0.25,
0.33333333333333326,
0.41666666666666674,
0.5,
0.5833333333333333,
0.6666666666666667,
0.75,
0.8333333333333333,
0.9166666666666667
],
[
-1.125,
-1.0416666666666665,
-0.9583333333333334,
-0.875,
-0.7916666666666667,
-0.7083333333333334,
-0.625,
-0.5416666666666667,
-0.45833333333333337,
-0.375,
-0.29166666666666674,
-0.20833333333333337,
-0.125,
-0.04166666666666674,
0.04166666666666652,
0.125,
0.20833333333333326,
0.2916666666666665,
0.375,
0.45833333333333326,
0.5416666666666665,
0.625,
0.7083333333333333,
0.7916666666666665,
0.875
],
[
-1.1666666666666665,
-1.0833333333333333,
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666666,
-0.5833333333333334,
-0.5,
-0.41666666666666663,
-0.33333333333333337,
-0.25,
-0.16666666666666663,
-0.08333333333333337,
-1.1102230246251565e-16,
0.08333333333333337,
0.16666666666666663,
0.2499999999999999,
0.33333333333333337,
0.41666666666666663,
0.4999999999999999,
0.5833333333333334,
0.6666666666666666,
0.7499999999999999,
0.8333333333333334
],
[
-1.2083333333333333,
-1.125,
-1.0416666666666665,
-0.9583333333333333,
-0.875,
-0.7916666666666666,
-0.7083333333333333,
-0.625,
-0.5416666666666666,
-0.45833333333333326,
-0.375,
-0.29166666666666663,
-0.20833333333333326,
-0.125,
-0.04166666666666674,
0.04166666666666674,
0.125,
0.20833333333333326,
0.29166666666666674,
0.375,
0.45833333333333326,
0.5416666666666667,
0.625,
0.7083333333333333,
0.7916666666666667
],
[
-1.25,
-1.1666666666666665,
-1.0833333333333335,
-1,
-0.9166666666666667,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333348,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75
],
[
-1.2916666666666665,
-1.2083333333333333,
-1.125,
-1.0416666666666665,
-0.9583333333333334,
-0.875,
-0.7916666666666666,
-0.7083333333333334,
-0.625,
-0.5416666666666666,
-0.45833333333333337,
-0.375,
-0.29166666666666663,
-0.20833333333333337,
-0.1250000000000001,
-0.04166666666666663,
0.04166666666666663,
0.12499999999999989,
0.20833333333333337,
0.29166666666666663,
0.3749999999999999,
0.45833333333333337,
0.5416666666666666,
0.6249999999999999,
0.7083333333333334
],
[
-1.3333333333333333,
-1.25,
-1.1666666666666665,
-1.0833333333333333,
-1,
-0.9166666666666666,
-0.8333333333333333,
-0.75,
-0.6666666666666666,
-0.5833333333333333,
-0.5,
-0.41666666666666663,
-0.33333333333333326,
-0.25,
-0.16666666666666674,
-0.08333333333333326,
0,
0.08333333333333326,
0.16666666666666674,
0.25,
0.33333333333333326,
0.41666666666666674,
0.5,
0.5833333333333333,
0.6666666666666667
],
[
-1.375,
-1.2916666666666665,
-1.2083333333333335,
-1.125,
-1.0416666666666667,
-0.9583333333333334,
-0.875,
-0.7916666666666667,
-0.7083333333333334,
-0.625,
-0.5416666666666667,
-0.45833333333333337,
-0.375,
-0.29166666666666674,
-0.20833333333333348,
-0.125,
-0.04166666666666674,
0.04166666666666652,
0.125,
0.20833333333333326,
0.2916666666666665,
0.375,
0.45833333333333326,
0.5416666666666665,
0.625
],
[
-1.4166666666666665,
-1.3333333333333333,
-1.25,
-1.1666666666666665,
-1.0833333333333335,
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666666,
-0.5833333333333334,
-0.5,
-0.41666666666666663,
-0.33333333333333337,
-0.2500000000000001,
-0.16666666666666663,
-0.08333333333333337,
-1.1102230246251565e-16,
0.08333333333333337,
0.16666666666666663,
0.2499999999999999,
0.33333333333333337,
0.41666666666666663,
0.4999999999999999,
0.5833333333333334
],
[
-1.4583333333333333,
-1.375,
-1.2916666666666665,
-1.2083333333333333,
-1.125,
-1.0416666666666665,
-0.9583333333333333,
-0.875,
-0.7916666666666666,
-0.7083333333333333,
-0.625,
-0.5416666666666666,
-0.45833333333333326,
-0.375,
-0.29166666666666674,
-0.20833333333333326,
-0.125,
-0.04166666666666674,
0.04166666666666674,
0.125,
0.20833333333333326,
0.29166666666666674,
0.375,
0.45833333333333326,
0.5416666666666667
],
[
-1.5,
-1.4166666666666665,
-1.3333333333333335,
-1.25,
-1.1666666666666667,
-1.0833333333333335,
-1,
-0.9166666666666667,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.3333333333333335,
-0.25,
-0.16666666666666674,
-0.08333333333333348,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5
]
]
},
{
"colorscale": "Jet",
"contours": {
"coloring": "heatmap"
},
"legendgroup": "sd",
"ncontours": 25,
"showscale": false,
"type": "contour",
"x": [
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1
],
"xaxis": "x2",
"y": [
-1,
-0.9166666666666666,
-0.8333333333333334,
-0.75,
-0.6666666666666667,
-0.5833333333333334,
-0.5,
-0.41666666666666674,
-0.33333333333333337,
-0.25,
-0.16666666666666674,
-0.08333333333333337,
0,
0.08333333333333326,
0.16666666666666652,
0.25,
0.33333333333333326,
0.4166666666666665,
0.5,
0.5833333333333333,
0.6666666666666665,
0.75,
0.8333333333333333,
0.9166666666666665,
1
],
"yaxis": "y2",
"z": [
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
],
[
0.5,
0.5416666666666667,
0.5833333333333333,
0.625,
0.6666666666666666,
0.7083333333333333,
0.75,
0.7916666666666666,
0.8333333333333333,
0.875,
0.9166666666666666,
0.9583333333333333,
1,
1.0416666666666665,
1.0833333333333333,
1.125,
1.1666666666666665,
1.2083333333333333,
1.25,
1.2916666666666665,
1.3333333333333333,
1.375,
1.4166666666666665,
1.4583333333333333,
1.5
]
]
}
],
"layout": {
"height": 500,
"hovermode": "closest",
"legend": {
"orientation": "h"
},
"width": 900,
"xaxis1": {
"anchor": "y1",
"domain": [
0,
0.47
],
"title": "x1",
"zeroline": true
},
"xaxis2": {
"anchor": "y2",
"domain": [
0.53,
1
],
"title": "x1",
"zeroline": true
},
"yaxis1": {
"anchor": "x1",
"domain": [
0,
1
],
"title": "x2",
"zeroline": true
},
"yaxis2": {
"anchor": "x2",
"domain": [
0,
1
]
}
}
},
"text/html": [
"<div id=\"7a693100-2068-429c-8618-a9a31504a6fe\" style=\"height: 500px; width: 900px;\" class=\"plotly-graph-div\"></div><script type=\"text/javascript\">require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {};window.PLOTLYENV.BASE_URL=\"https://plot.ly\";Plotly.newPlot(\"7a693100-2068-429c-8618-a9a31504a6fe\", [{\"legendgroup\": \"mean\", \"showscale\": false, \"yaxis\": \"y1\", \"ncontours\": 25, \"contours\": {\"coloring\": \"heatmap\"}, \"xaxis\": \"x1\", \"y\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"x\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"z\": [[-0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666663, 0.25, 0.33333333333333326, 0.41666666666666663, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0, 1.0833333333333333, 1.1666666666666665, 1.25, 1.3333333333333333, 1.4166666666666665, 1.5], [-0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333343, -0.12500000000000006, -0.041666666666666685, 0.041666666666666574, 0.12499999999999994, 0.20833333333333331, 0.2916666666666666, 0.37499999999999994, 0.4583333333333333, 0.5416666666666665, 0.6249999999999998, 0.7083333333333333, 0.7916666666666665, 0.8749999999999998, 0.9583333333333333, 1.0416666666666665, 1.1249999999999998, 1.2083333333333333, 1.2916666666666665, 1.3749999999999998, 1.4583333333333333], [-0.5833333333333333, -0.49999999999999994, -0.4166666666666667, -0.3333333333333333, -0.25000000000000006, -0.16666666666666669, -0.08333333333333331, -5.551115123125783e-17, 0.08333333333333331, 0.16666666666666669, 0.24999999999999994, 0.3333333333333333, 0.4166666666666667, 0.49999999999999994, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667, 1.0, 1.0833333333333333, 1.1666666666666667, 1.25, 1.3333333333333333, 1.4166666666666667], [-0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666663, 0.125, 0.20833333333333326, 0.29166666666666663, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875, 0.9583333333333333, 1.0416666666666665, 1.125, 1.2083333333333333, 1.2916666666666665, 1.375], [-0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, 0.0, 0.08333333333333337, 0.16666666666666663, 0.25, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334, 0.9166666666666666, 0.9999999999999999, 1.0833333333333335, 1.1666666666666665, 1.25, 1.3333333333333335], [-0.7083333333333333, -0.625, -0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333331, -0.12500000000000006, -0.041666666666666685, 0.041666666666666685, 0.12499999999999994, 0.20833333333333331, 0.2916666666666667, 0.37499999999999994, 0.4583333333333332, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667, 0.875, 0.9583333333333333, 1.0416666666666667, 1.125, 1.2083333333333333, 1.2916666666666667], [-0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666663, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0, 1.0833333333333333, 1.1666666666666665, 1.25], [-0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.125, -0.04166666666666663, 0.04166666666666663, 0.125, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334, 0.7916666666666666, 0.8749999999999999, 0.9583333333333334, 1.0416666666666665, 1.125, 1.2083333333333335], [-0.8333333333333333, -0.75, -0.6666666666666667, -0.5833333333333333, -0.5, -0.4166666666666667, -0.3333333333333333, -0.25000000000000006, -0.16666666666666669, -0.08333333333333331, -5.551115123125783e-17, 0.08333333333333331, 0.16666666666666669, 0.24999999999999994, 0.3333333333333332, 0.4166666666666667, 0.49999999999999994, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667, 1.0, 1.0833333333333333, 1.1666666666666667], [-0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666663, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875, 0.9583333333333333, 1.0416666666666665, 1.125], [-0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, 0.0, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334, 0.9166666666666666, 0.9999999999999999, 1.0833333333333335], [-0.9583333333333333, -0.875, -0.7916666666666667, -0.7083333333333333, -0.625, -0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333331, -0.12500000000000006, -0.041666666666666685, 0.041666666666666685, 0.12499999999999994, 0.2083333333333332, 0.2916666666666667, 0.37499999999999994, 0.4583333333333332, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667, 0.875, 0.9583333333333333, 1.0416666666666667], [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], [-1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.125, -0.04166666666666663, 0.04166666666666663, 0.12499999999999989, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334, 0.7916666666666666, 0.8749999999999999, 0.9583333333333334], [-1.0833333333333333, -0.9999999999999999, -0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333326, -0.25, -0.16666666666666663, -0.08333333333333326, 0.0, 0.08333333333333326, 0.16666666666666674, 0.25, 0.33333333333333326, 0.41666666666666674, 0.5, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667], [-1.125, -1.0416666666666665, -0.9583333333333334, -0.875, -0.7916666666666667, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666652, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875], [-1.1666666666666665, -1.0833333333333333, -1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, -1.1102230246251565e-16, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334], [-1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333326, -0.375, -0.29166666666666663, -0.20833333333333326, -0.125, -0.04166666666666674, 0.04166666666666674, 0.125, 0.20833333333333326, 0.29166666666666674, 0.375, 0.45833333333333326, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667], [-1.25, -1.1666666666666665, -1.0833333333333335, -1.0, -0.9166666666666667, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333348, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75], [-1.2916666666666665, -1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333334, -0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.1250000000000001, -0.04166666666666663, 0.04166666666666663, 0.12499999999999989, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334], [-1.3333333333333333, -1.25, -1.1666666666666665, -1.0833333333333333, -1.0, -0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333326, -0.25, -0.16666666666666674, -0.08333333333333326, 0.0, 0.08333333333333326, 0.16666666666666674, 0.25, 0.33333333333333326, 0.41666666666666674, 0.5, 0.5833333333333333, 0.6666666666666667], [-1.375, -1.2916666666666665, -1.2083333333333335, -1.125, -1.0416666666666667, -0.9583333333333334, -0.875, -0.7916666666666667, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333348, -0.125, -0.04166666666666674, 0.04166666666666652, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625], [-1.4166666666666665, -1.3333333333333333, -1.25, -1.1666666666666665, -1.0833333333333335, -1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.2500000000000001, -0.16666666666666663, -0.08333333333333337, -1.1102230246251565e-16, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334], [-1.4583333333333333, -1.375, -1.2916666666666665, -1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333326, -0.375, -0.29166666666666674, -0.20833333333333326, -0.125, -0.04166666666666674, 0.04166666666666674, 0.125, 0.20833333333333326, 0.29166666666666674, 0.375, 0.45833333333333326, 0.5416666666666667], [-1.5, -1.4166666666666665, -1.3333333333333335, -1.25, -1.1666666666666667, -1.0833333333333335, -1.0, -0.9166666666666667, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.3333333333333335, -0.25, -0.16666666666666674, -0.08333333333333348, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5]], \"type\": \"contour\"}, {\"legendgroup\": \"sd\", \"showscale\": false, \"yaxis\": \"y2\", \"colorscale\": \"Jet\", \"ncontours\": 25, \"contours\": {\"coloring\": \"heatmap\"}, \"xaxis\": \"x2\", \"y\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"x\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"z\": [[0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5]], \"type\": \"contour\"}], {\"yaxis1\": {\"zeroline\": true, \"domain\": [0.0, 1.0], \"anchor\": \"x1\", \"title\": \"x2\"}, \"xaxis2\": {\"zeroline\": true, \"domain\": [0.53, 1.0], \"anchor\": \"y2\", \"title\": \"x1\"}, \"xaxis1\": {\"zeroline\": true, \"domain\": [0.0, 0.47], \"anchor\": \"y1\", \"title\": \"x1\"}, \"height\": 500, \"width\": 900, \"yaxis2\": {\"domain\": [0.0, 1.0], \"anchor\": \"x2\"}, \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\"}}, {\"linkText\": \"Export to plot.ly\", \"showLink\": true})});</script>"
],
"text/vnd.plotly.v1+html": [
"<div id=\"7a693100-2068-429c-8618-a9a31504a6fe\" style=\"height: 500px; width: 900px;\" class=\"plotly-graph-div\"></div><script type=\"text/javascript\">require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {};window.PLOTLYENV.BASE_URL=\"https://plot.ly\";Plotly.newPlot(\"7a693100-2068-429c-8618-a9a31504a6fe\", [{\"legendgroup\": \"mean\", \"showscale\": false, \"yaxis\": \"y1\", \"ncontours\": 25, \"contours\": {\"coloring\": \"heatmap\"}, \"xaxis\": \"x1\", \"y\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"x\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"z\": [[-0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666663, 0.25, 0.33333333333333326, 0.41666666666666663, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0, 1.0833333333333333, 1.1666666666666665, 1.25, 1.3333333333333333, 1.4166666666666665, 1.5], [-0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333343, -0.12500000000000006, -0.041666666666666685, 0.041666666666666574, 0.12499999999999994, 0.20833333333333331, 0.2916666666666666, 0.37499999999999994, 0.4583333333333333, 0.5416666666666665, 0.6249999999999998, 0.7083333333333333, 0.7916666666666665, 0.8749999999999998, 0.9583333333333333, 1.0416666666666665, 1.1249999999999998, 1.2083333333333333, 1.2916666666666665, 1.3749999999999998, 1.4583333333333333], [-0.5833333333333333, -0.49999999999999994, -0.4166666666666667, -0.3333333333333333, -0.25000000000000006, -0.16666666666666669, -0.08333333333333331, -5.551115123125783e-17, 0.08333333333333331, 0.16666666666666669, 0.24999999999999994, 0.3333333333333333, 0.4166666666666667, 0.49999999999999994, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667, 1.0, 1.0833333333333333, 1.1666666666666667, 1.25, 1.3333333333333333, 1.4166666666666667], [-0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666663, 0.125, 0.20833333333333326, 0.29166666666666663, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875, 0.9583333333333333, 1.0416666666666665, 1.125, 1.2083333333333333, 1.2916666666666665, 1.375], [-0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, 0.0, 0.08333333333333337, 0.16666666666666663, 0.25, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334, 0.9166666666666666, 0.9999999999999999, 1.0833333333333335, 1.1666666666666665, 1.25, 1.3333333333333335], [-0.7083333333333333, -0.625, -0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333331, -0.12500000000000006, -0.041666666666666685, 0.041666666666666685, 0.12499999999999994, 0.20833333333333331, 0.2916666666666667, 0.37499999999999994, 0.4583333333333332, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667, 0.875, 0.9583333333333333, 1.0416666666666667, 1.125, 1.2083333333333333, 1.2916666666666667], [-0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666663, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0, 1.0833333333333333, 1.1666666666666665, 1.25], [-0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.125, -0.04166666666666663, 0.04166666666666663, 0.125, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334, 0.7916666666666666, 0.8749999999999999, 0.9583333333333334, 1.0416666666666665, 1.125, 1.2083333333333335], [-0.8333333333333333, -0.75, -0.6666666666666667, -0.5833333333333333, -0.5, -0.4166666666666667, -0.3333333333333333, -0.25000000000000006, -0.16666666666666669, -0.08333333333333331, -5.551115123125783e-17, 0.08333333333333331, 0.16666666666666669, 0.24999999999999994, 0.3333333333333332, 0.4166666666666667, 0.49999999999999994, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667, 1.0, 1.0833333333333333, 1.1666666666666667], [-0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666663, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875, 0.9583333333333333, 1.0416666666666665, 1.125], [-0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, 0.0, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334, 0.9166666666666666, 0.9999999999999999, 1.0833333333333335], [-0.9583333333333333, -0.875, -0.7916666666666667, -0.7083333333333333, -0.625, -0.5416666666666667, -0.4583333333333333, -0.37500000000000006, -0.2916666666666667, -0.20833333333333331, -0.12500000000000006, -0.041666666666666685, 0.041666666666666685, 0.12499999999999994, 0.2083333333333332, 0.2916666666666667, 0.37499999999999994, 0.4583333333333332, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667, 0.875, 0.9583333333333333, 1.0416666666666667], [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], [-1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.125, -0.04166666666666663, 0.04166666666666663, 0.12499999999999989, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334, 0.7916666666666666, 0.8749999999999999, 0.9583333333333334], [-1.0833333333333333, -0.9999999999999999, -0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333326, -0.25, -0.16666666666666663, -0.08333333333333326, 0.0, 0.08333333333333326, 0.16666666666666674, 0.25, 0.33333333333333326, 0.41666666666666674, 0.5, 0.5833333333333333, 0.6666666666666667, 0.75, 0.8333333333333333, 0.9166666666666667], [-1.125, -1.0416666666666665, -0.9583333333333334, -0.875, -0.7916666666666667, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333337, -0.125, -0.04166666666666674, 0.04166666666666652, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625, 0.7083333333333333, 0.7916666666666665, 0.875], [-1.1666666666666665, -1.0833333333333333, -1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.25, -0.16666666666666663, -0.08333333333333337, -1.1102230246251565e-16, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334, 0.6666666666666666, 0.7499999999999999, 0.8333333333333334], [-1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333326, -0.375, -0.29166666666666663, -0.20833333333333326, -0.125, -0.04166666666666674, 0.04166666666666674, 0.125, 0.20833333333333326, 0.29166666666666674, 0.375, 0.45833333333333326, 0.5416666666666667, 0.625, 0.7083333333333333, 0.7916666666666667], [-1.25, -1.1666666666666665, -1.0833333333333335, -1.0, -0.9166666666666667, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333348, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75], [-1.2916666666666665, -1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333334, -0.875, -0.7916666666666666, -0.7083333333333334, -0.625, -0.5416666666666666, -0.45833333333333337, -0.375, -0.29166666666666663, -0.20833333333333337, -0.1250000000000001, -0.04166666666666663, 0.04166666666666663, 0.12499999999999989, 0.20833333333333337, 0.29166666666666663, 0.3749999999999999, 0.45833333333333337, 0.5416666666666666, 0.6249999999999999, 0.7083333333333334], [-1.3333333333333333, -1.25, -1.1666666666666665, -1.0833333333333333, -1.0, -0.9166666666666666, -0.8333333333333333, -0.75, -0.6666666666666666, -0.5833333333333333, -0.5, -0.41666666666666663, -0.33333333333333326, -0.25, -0.16666666666666674, -0.08333333333333326, 0.0, 0.08333333333333326, 0.16666666666666674, 0.25, 0.33333333333333326, 0.41666666666666674, 0.5, 0.5833333333333333, 0.6666666666666667], [-1.375, -1.2916666666666665, -1.2083333333333335, -1.125, -1.0416666666666667, -0.9583333333333334, -0.875, -0.7916666666666667, -0.7083333333333334, -0.625, -0.5416666666666667, -0.45833333333333337, -0.375, -0.29166666666666674, -0.20833333333333348, -0.125, -0.04166666666666674, 0.04166666666666652, 0.125, 0.20833333333333326, 0.2916666666666665, 0.375, 0.45833333333333326, 0.5416666666666665, 0.625], [-1.4166666666666665, -1.3333333333333333, -1.25, -1.1666666666666665, -1.0833333333333335, -1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666666, -0.5833333333333334, -0.5, -0.41666666666666663, -0.33333333333333337, -0.2500000000000001, -0.16666666666666663, -0.08333333333333337, -1.1102230246251565e-16, 0.08333333333333337, 0.16666666666666663, 0.2499999999999999, 0.33333333333333337, 0.41666666666666663, 0.4999999999999999, 0.5833333333333334], [-1.4583333333333333, -1.375, -1.2916666666666665, -1.2083333333333333, -1.125, -1.0416666666666665, -0.9583333333333333, -0.875, -0.7916666666666666, -0.7083333333333333, -0.625, -0.5416666666666666, -0.45833333333333326, -0.375, -0.29166666666666674, -0.20833333333333326, -0.125, -0.04166666666666674, 0.04166666666666674, 0.125, 0.20833333333333326, 0.29166666666666674, 0.375, 0.45833333333333326, 0.5416666666666667], [-1.5, -1.4166666666666665, -1.3333333333333335, -1.25, -1.1666666666666667, -1.0833333333333335, -1.0, -0.9166666666666667, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.3333333333333335, -0.25, -0.16666666666666674, -0.08333333333333348, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5]], \"type\": \"contour\"}, {\"legendgroup\": \"sd\", \"showscale\": false, \"yaxis\": \"y2\", \"colorscale\": \"Jet\", \"ncontours\": 25, \"contours\": {\"coloring\": \"heatmap\"}, \"xaxis\": \"x2\", \"y\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"x\": [-1.0, -0.9166666666666666, -0.8333333333333334, -0.75, -0.6666666666666667, -0.5833333333333334, -0.5, -0.41666666666666674, -0.33333333333333337, -0.25, -0.16666666666666674, -0.08333333333333337, 0.0, 0.08333333333333326, 0.16666666666666652, 0.25, 0.33333333333333326, 0.4166666666666665, 0.5, 0.5833333333333333, 0.6666666666666665, 0.75, 0.8333333333333333, 0.9166666666666665, 1.0], \"z\": [[0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5], [0.5, 0.5416666666666667, 0.5833333333333333, 0.625, 0.6666666666666666, 0.7083333333333333, 0.75, 0.7916666666666666, 0.8333333333333333, 0.875, 0.9166666666666666, 0.9583333333333333, 1.0, 1.0416666666666665, 1.0833333333333333, 1.125, 1.1666666666666665, 1.2083333333333333, 1.25, 1.2916666666666665, 1.3333333333333333, 1.375, 1.4166666666666665, 1.4583333333333333, 1.5]], \"type\": \"contour\"}], {\"yaxis1\": {\"zeroline\": true, \"domain\": [0.0, 1.0], \"anchor\": \"x1\", \"title\": \"x2\"}, \"xaxis2\": {\"zeroline\": true, \"domain\": [0.53, 1.0], \"anchor\": \"y2\", \"title\": \"x1\"}, \"xaxis1\": {\"zeroline\": true, \"domain\": [0.0, 0.47], \"anchor\": \"y1\", \"title\": \"x1\"}, \"height\": 500, \"width\": 900, \"yaxis2\": {\"domain\": [0.0, 1.0], \"anchor\": \"x2\"}, \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\"}}, {\"linkText\": \"Export to plot.ly\", \"showLink\": true})});</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"fig['layout'].update(\n",
" xaxis1=dict(title='x1', zeroline=True),\n",
" yaxis1=dict(title='x2', zeroline=True),\n",
" xaxis2=dict(title='x1', zeroline=True),\n",
" #yaxis2=dict(title='x2', zeroline=True),\n",
" hovermode='closest',\n",
" legend=dict(orientation=\"h\"),\n",
" height=500,\n",
" width=900\n",
")\n",
"iplot(fig)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.11"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment