Skip to content

Instantly share code, notes, and snippets.

@quaquel
Created May 9, 2014 13:27
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 quaquel/9b0ca7a9cf9e0d5c1f1b to your computer and use it in GitHub Desktop.
Save quaquel/9b0ca7a9cf9e0d5c1f1b to your computer and use it in GitHub Desktop.
InteractiveLegendPlugin
{
"metadata": {
"name": "",
"signature": "sha256:182ea3f8dbdf630dc56fc351cc6058e936a68f601ff7517874bfb40a006891b0"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import mpld3\n",
"from mpld3 import plugins, utils\n",
"\n",
"\n",
"class HighlightLines(plugins.PluginBase):\n",
" \"\"\"A plugin for an interactive legend. \n",
" \n",
" Inspired by http://bl.ocks.org/simzou/6439398\n",
" \n",
" \"\"\"\n",
"\n",
" JAVASCRIPT = \"\"\"\n",
" mpld3.register_plugin(\"interactive_legend\", InteractiveLegend);\n",
" InteractiveLegend.prototype = Object.create(mpld3.Plugin.prototype);\n",
" InteractiveLegend.prototype.constructor = InteractiveLegend;\n",
" InteractiveLegend.prototype.requiredProps = [\"line_ids\", \"labels\"];\n",
" InteractiveLegend.prototype.defaultProps = {}\n",
" function InteractiveLegend(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" InteractiveLegend.prototype.draw = function(){\n",
" var labels = new Array();\n",
" for(var i=0; i<this.props.labels.length; i++){\n",
" var obj = {}\n",
" obj.label = this.props.labels[i]\n",
" \n",
" var line_ids = this.props.line_ids[i]\n",
" lines = []\n",
" console.log(line_ids)\n",
" for(var j=0; j<line_ids.length; j++){\n",
" var line = mpld3.get_element(line_ids[j], this.fig)\n",
" console.log(line)\n",
" lines.push(mpld3.get_element(line_ids[j], this.fig))\n",
" }\n",
" \n",
" obj.lines = lines\n",
" obj.visible = false;\n",
" labels.push(obj);\n",
" }\n",
" \n",
" var ax = this.fig.axes[0]\n",
" var legend = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"legend\");\n",
" \n",
" // add the rectangles\n",
" legend.selectAll(\"rect\")\n",
" .data(labels)\n",
" .enter().append(\"rect\")\n",
" .attr(\"height\",10)\n",
" .attr(\"width\", 25)\n",
" .attr(\"x\",ax.width+10+ax.position[0])\n",
" .attr(\"y\",function(d,i) {\n",
" return ax.position[1]+ i * 25 - 10;})\n",
" .attr(\"stroke\", function(d) {\n",
" console.log(d)\n",
" return d.lines[0].props.edgecolor})\n",
" .attr(\"class\", \"legend-box\")\n",
" .style(\"fill\", \"white\")\n",
" .on(\"click\", click)\n",
" \n",
" // add the text\n",
" legend.selectAll(\"text\")\n",
" .data(labels)\n",
" .enter().append(\"text\")\n",
" .attr(\"x\", function (d) {\n",
" return ax.width+10+ax.position[0] + 25 + 15\n",
" })\n",
" .attr(\"y\", function(d,i) { \n",
" return ax.position[1]+ i * 25\n",
" })\n",
" .text(function(d) { return d.label })\n",
" \n",
" // specify the action on click\n",
" function click(d,i){\n",
" d.visible = !d.visible;\n",
" d3.select(this)\n",
" .style(\"fill\",function(d, i) {\n",
" var color = d.lines[0].props.edgecolor\n",
" return d.visible ? color : \"white\";\n",
" })\n",
" \n",
" for(var i=0; i<d.lines.length; i++){\n",
" d3.select(d.lines[i].path[0][0])\n",
" .style(\"stroke-opacity\", d.visible ? 1 : d.lines[0].props.alpha);\n",
" }\n",
" \n",
" }\n",
" };\n",
" \"\"\"\n",
"\n",
" def __init__(self, line_collections, labels, css):\n",
" \n",
" self.css_ = css or \"\"\n",
" \n",
" line_ids = []\n",
" for entry in line_collections:\n",
" line_ids.append([utils.get_id(line) for line in entry])\n",
" \n",
" self.lines = lines\n",
" self.dict_ = {\"type\": \"interactive_legend\",\n",
" \"line_ids\": line_ids,\n",
" \"labels\":labels}\n",
"\n",
"\n",
"css = \"\"\"\n",
".legend-box {\n",
" cursor: pointer; \n",
"}\n",
"\"\"\"\n",
" \n",
"N_paths = 5\n",
"N_steps = 100\n",
"\n",
"x1 = np.linspace(0, 10, 100)\n",
"y = 0.1 * (np.random.random((N_paths, N_steps)) - 0.5)\n",
"y1 = y.cumsum(1)\n",
"\n",
"x2 = np.linspace(0, 10, 100)\n",
"y = 0.1 * (np.random.random((N_paths, N_steps)) - 0.5)\n",
"y2 = y.cumsum(1)\n",
"\n",
"fig, ax = plt.subplots()\n",
"labels = [\"a\", \"b\"]\n",
"l1 = ax.plot(x1, y1.T, lw=4, alpha=0.1, c='b', label='a')\n",
"l2 = ax.plot(x2, y2.T, lw=4, alpha=0.2, c='r', label='b')\n",
"\n",
"line_collections = [l1,l2]\n",
"plugins.connect(fig, HighlightLines(line_collections, labels, css))\n",
"\n",
"mpld3.display()\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"\n",
"\n",
"<style>\n",
"\n",
".legend-box {\n",
" cursor: pointer; \n",
"}\n",
"\n",
"</style>\n",
"\n",
"<div id=\"fig_el18214555277968732500167\"></div>\n",
"<script>\n",
"function mpld3_load_lib(url, callback){\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = true;\n",
" s.onreadystatechange = s.onload = callback;\n",
" s.onerror = function(){console.warn(\"failed to load library \" + url);};\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
"}\n",
"\n",
"if(typeof(mpld3) !== \"undefined\" && mpld3._mpld3IsLoaded){\n",
" // already loaded: just create the figure\n",
" !function(mpld3){\n",
" \n",
" mpld3.register_plugin(\"interactive_legend\", InteractiveLegend);\n",
" InteractiveLegend.prototype = Object.create(mpld3.Plugin.prototype);\n",
" InteractiveLegend.prototype.constructor = InteractiveLegend;\n",
" InteractiveLegend.prototype.requiredProps = [\"line_ids\", \"labels\"];\n",
" InteractiveLegend.prototype.defaultProps = {}\n",
" function InteractiveLegend(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" InteractiveLegend.prototype.draw = function(){\n",
" var labels = new Array();\n",
" for(var i=0; i<this.props.labels.length; i++){\n",
" var obj = {}\n",
" obj.label = this.props.labels[i]\n",
" \n",
" var line_ids = this.props.line_ids[i]\n",
" lines = []\n",
" console.log(line_ids)\n",
" for(var j=0; j<line_ids.length; j++){\n",
" var line = mpld3.get_element(line_ids[j], this.fig)\n",
" console.log(line)\n",
" lines.push(mpld3.get_element(line_ids[j], this.fig))\n",
" }\n",
" \n",
" obj.lines = lines\n",
" obj.visible = false;\n",
" labels.push(obj);\n",
" }\n",
" \n",
" var ax = this.fig.axes[0]\n",
" var legend = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"legend\");\n",
" \n",
" // add the rectangles\n",
" legend.selectAll(\"rect\")\n",
" .data(labels)\n",
" .enter().append(\"rect\")\n",
" .attr(\"height\",10)\n",
" .attr(\"width\", 25)\n",
" .attr(\"x\",ax.width+10+ax.position[0])\n",
" .attr(\"y\",function(d,i) {\n",
" return ax.position[1]+ i * 25 - 10;})\n",
" .attr(\"stroke\", function(d) {\n",
" console.log(d)\n",
" return d.lines[0].props.edgecolor})\n",
" .attr(\"class\", \"legend-box\")\n",
" .style(\"fill\", \"white\")\n",
" .on(\"click\", click)\n",
" \n",
" // add the text\n",
" legend.selectAll(\"text\")\n",
" .data(labels)\n",
" .enter().append(\"text\")\n",
" .attr(\"x\", function (d) {\n",
" return ax.width+10+ax.position[0] + 25 + 15\n",
" })\n",
" .attr(\"y\", function(d,i) { \n",
" return ax.position[1]+ i * 25\n",
" })\n",
" .text(function(d) { return d.label })\n",
" \n",
" // specify the action on click\n",
" function click(d,i){\n",
" d.visible = !d.visible;\n",
" d3.select(this)\n",
" .style(\"fill\",function(d, i) {\n",
" var color = d.lines[0].props.edgecolor\n",
" return d.visible ? color : \"white\";\n",
" })\n",
" \n",
" for(var i=0; i<d.lines.length; i++){\n",
" d3.select(d.lines[i].path[0][0])\n",
" .style(\"stroke-opacity\", d.visible ? 1 : d.lines[0].props.alpha);\n",
" }\n",
" \n",
" }\n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el18214555277968732500167\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.30000000000000004, 0.5], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214555278608\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569958288\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569956944\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569960272\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569959696\"}, {\"color\": \"#FF0000\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569884816\"}, {\"color\": \"#FF0000\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570050640\"}, {\"color\": \"#FF0000\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569899216\"}, {\"color\": \"#FF0000\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051536\"}, {\"color\": \"#FF0000\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051984\"}], \"markers\": [], \"id\": \"el18214555307024\", \"ydomain\": [-0.30000000000000004, 0.5], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"type\": \"reset\"}, {\"enabled\": false, \"button\": true, \"type\": \"zoom\"}, {\"enabled\": false, \"button\": true, \"type\": \"boxzoom\"}, {\"line_ids\": [[\"el18214555278608\", \"el18214569958288\", \"el18214569956944\", \"el18214569960272\", \"el18214569959696\"], [\"el18214569884816\", \"el18214570050640\", \"el18214569899216\", \"el18214570051536\", \"el18214570051984\"]], \"labels\": [\"a\", \"b\"], \"type\": \"interactive_legend\"}], \"data\": {\"data01\": [[0.0, -0.013712535152610473, 0.045592914719516014, -0.010317929389271752, 0.01770043044929841, -0.038429496115086406, 0.047826887662544774, -0.0015466985043633419, -0.023453538609098535, 0.026704342002708006, 0.00797098889985467], [0.10101010101010101, -0.011761339295849316, 0.04090522239512089, -0.043354834835920716, 0.009550144337282074, -0.06422750032859464, -6.178692152858378e-06, -0.0031711642924225018, -0.016910075591115258, 0.029352666037830814, 0.006156681886784088], [0.20202020202020202, 0.001706226235816788, 0.07074606899222234, -0.08572532012845989, 0.0029603677799324712, -0.029056502954477502, -0.03968115639937342, 0.033315872466825595, -0.01724912865423449, 0.04593701239678767, 0.03717664320276533], [0.30303030303030304, 0.04019186150591789, 0.06307166733981107, -0.1079056085765249, 0.010036955660098833, -0.07626451154558211, -0.027812238532187873, 0.033863599947871144, -0.030336193494615457, 0.02068902115523147, 0.07262732613172251], [0.40404040404040403, 0.05618965203309743, 0.05686178237325264, -0.07245920155264324, 0.02496585312354881, -0.07693954101456914, -0.01781714549654937, 0.04798301473532824, -0.016351042140838677, 0.0026890756111072056, 0.06534449506807613], [0.5050505050505051, 0.09181479219807133, 0.09499124176393471, -0.036405860318113416, -0.006487838239754174, -0.04692236312141079, -0.059240527064589384, 0.08897715619923915, -0.04573110300128188, -0.03705927476247284, 0.055240242912334106], [0.6060606060606061, 0.13332499802109876, 0.09992962499149434, -0.06718132936335025, -0.03703464693469597, -0.0032050677460365995, -0.08555073950313907, 0.04835488914524919, -0.052140914371985016, -0.02961405697392152, 0.09652319895678221], [0.7070707070707071, 0.15650160222243606, 0.13969495168435186, -0.10584959132965929, -0.0837093595118106, 0.03551014966393041, -0.04845234850756059, 0.04848536944498046, -0.08323090307250125, -0.005187551081169368, 0.09940669421997309], [0.8080808080808081, 0.1589865492807072, 0.1821916982455648, -0.13467339773233147, -0.11688657785926858, 0.06809335200108632, -0.008652927378251553, 0.06755567223242998, -0.13138481043510664, -0.00038290089071909075, 0.05900347097191514], [0.9090909090909091, 0.14891548767402765, 0.18044234213810117, -0.1114133857968713, -0.13140071589896726, 0.1159216386342348, -0.01013368240465843, 0.028509105129215527, -0.14633659554008832, -0.0381200380620936, 0.06444068965148395], [1.0101010101010102, 0.16261859795945685, 0.13111871197040323, -0.08261657607056838, -0.12977314134998094, 0.14967719620741016, -0.011188652733569483, 0.007841862793785823, -0.15471265443666474, -0.05362008723527057, 0.1041708100075958], [1.1111111111111112, 0.17860205120583003, 0.12355946456048855, -0.07522675054078042, -0.12907331048586598, 0.10507124988068292, -0.03443291756386585, 0.04143335309230774, -0.15146580830964282, -0.04802627751901459, 0.06241179645175536], [1.2121212121212122, 0.1319577493387877, 0.1314352149178679, -0.09778685864573176, -0.17479177735700077, 0.11866282638709602, -0.06595133015475815, 0.07843289937451482, -0.1387209732178574, -0.004718587692638138, 0.051857774311640056], [1.3131313131313131, 0.0844389474007457, 0.15789810058264492, -0.1320682544185418, -0.15778497484696355, 0.07078598313203244, -0.03571816467780428, 0.04203313684980875, -0.14266724959994329, 0.021603505654336948, 0.022256980034056146], [1.4141414141414141, 0.04459123241286643, 0.15193767202732808, -0.08337919460177931, -0.19450252425666154, 0.06909612996028226, -0.016750780121222057, 0.035878614980084475, -0.18659109558219364, -0.00932383992172741, 0.013114787496014552], [1.5151515151515151, 0.08742132145111622, 0.13422326536891, -0.11073221378646549, -0.15380961068332177, 0.10989055707535432, 0.023478110625415115, -0.01341969271995054, -0.1584799343692039, 4.051979567884674e-05, -0.012960062268476277], [1.6161616161616161, 0.0736983319685471, 0.12671618876073057, -0.0869811454657599, -0.14912298093323337, 0.13362466106348264, -0.0013759951515323401, 0.01368207775956629, -0.17655759399087875, -0.0029359849255892784, 0.001977767316141547], [1.7171717171717171, 0.10943810015135616, 0.146216433579349, -0.09820531950175024, -0.10834188944825919, 0.09185820618205313, 0.03810244028024743, -0.008388755312991793, -0.2172681581992612, -0.035447542328531506, -0.018997688626449002], [1.8181818181818181, 0.11756027529817764, 0.12933839531490815, -0.06819091801962703, -0.11200313109723106, 0.09682590571234966, 0.033984718939474724, 0.035998346314366686, -0.20527505055144646, -0.06382108793057312, 0.023141416959748848], [1.9191919191919191, 0.1559347181056656, 0.15817862303144797, -0.10038204999516892, -0.07765201653382012, 0.1317103954699735, 0.057603864624613865, -0.005697557954678606, -0.24823488144329336, -0.08300630879986062, 0.027519733182005963], [2.0202020202020203, 0.18459958949242142, 0.16904960585156908, -0.12299723685884585, -0.0836024252957395, 0.10849900922641618, 0.09989590191324982, 0.02777475613024468, -0.20271121421594349, -0.04034976681704794, 0.07713995721860017], [2.121212121212121, 0.14970236377454244, 0.20313130545355265, -0.16660629447845443, -0.07595344311820725, 0.15250229769932666, 0.05412309071327349, -0.017890862690098125, -0.23985159654332716, -0.08656017553164702, 0.067205528850281], [2.2222222222222223, 0.11044760141931648, 0.16884306959820125, -0.13873933978372152, -0.06169841128878781, 0.19082466949483684, 0.09397057068187756, -0.008850537082420245, -0.22093412305076449, -0.0901559590414821, 0.03624494228144913], [2.323232323232323, 0.1303900986868879, 0.13219374256822203, -0.12791680035103062, -0.10832690795420133, 0.18598552376513275, 0.08097020811082063, -0.03967278686393678, -0.19297100465507724, -0.09027113489029367, 0.003983241690989091], [2.4242424242424243, 0.08867420903265975, 0.15661297436166088, -0.13876628083086756, -0.1350443013882044, 0.1768531418003166, 0.08382772877349598, -0.018954858687961068, -0.16994612928361244, -0.127408560066511, 0.04774921366728242], [2.525252525252525, 0.10950378812294694, 0.10719341258330384, -0.17479195227507544, -0.1550937423663601, 0.1670077893285469, 0.08271210828803073, -0.0031889410673252606, -0.1374575703190142, -0.16434535947665768, 0.0875600229947202], [2.6262626262626263, 0.09525501300816866, 0.15277263379151867, -0.15372443959158755, -0.18189458800598055, 0.17472182350422572, 0.099246689318591, 0.0053141900916157305, -0.17625625854529384, -0.13077906602650144, 0.04865275026581731], [2.727272727272727, 0.05223260759425431, 0.19653620112984574, -0.12693667132414446, -0.17274842967140283, 0.14023144652734285, 0.11733151943669892, -0.015417000743674808, -0.1385603750030197, -0.17650914860899014, 0.01563397989086949], [2.8282828282828283, 0.0502750800387325, 0.18146052146445393, -0.14100843270181798, -0.12558976480271644, 0.0947859534109892, 0.1456764616001835, -0.05827584265290412, -0.13975875260645926, -0.14235701495668185, 0.050127577125916825], [2.929292929292929, 0.003427090952446886, 0.19197805039826385, -0.10429236255682009, -0.10515482199053552, 0.12321985197489037, 0.12417636229619503, -0.025853623983289095, -0.12196182132527195, -0.12669603977184274, 0.04918605451695799], [3.0303030303030303, 0.007444708592031723, 0.14273793749123917, -0.1486274195272101, -0.1431102425068246, 0.1652373095913917, 0.11543689992964284, -0.03573324106275962, -0.07930162362097724, -0.08155941712696221, 0.0761063104065195], [3.131313131313131, -0.031153589326259813, 0.14322159645918978, -0.16299729421621176, -0.14038449715459844, 0.2033268288945848, 0.11763921700009525, -0.0297237604645736, -0.04708795952297886, -0.1128526367154909, 0.09729646316342684], [3.2323232323232323, -0.026359130593084625, 0.15200672315814126, -0.1965594568799012, -0.14115654697101604, 0.22814548182367772, 0.14059288436145903, -0.017407006748027608, -0.06528612977452523, -0.10669985946719983, 0.09227499061147086], [3.3333333333333335, 0.00426738484685979, 0.11674562677391323, -0.15969660782924155, -0.13902006819652932, 0.2589930581817555, 0.13342445948747886, -0.04620951534291338, -0.09828196322460278, -0.10219433270522735, 0.11406731338581712], [3.4343434343434343, -0.0320971147419755, 0.11451365723238902, -0.14843930624351123, -0.09404312550087152, 0.2764701652799255, 0.11388668334866786, -0.08173426603161313, -0.09939238725868432, -0.07376873708150211, 0.06504600815056112], [3.5353535353535355, -0.059133268502872385, 0.09245099094168889, -0.17855496030010104, -0.08113941990270426, 0.252253477191925, 0.0651131212711607, -0.037967946731883376, -0.08353514331020181, -0.07683455234585887, 0.07561128139634632], [3.6363636363636362, -0.07988119457169826, 0.054394713226521826, -0.1850029606762342, -0.058641930378235355, 0.25347592012961734, 0.06387032396843821, -0.03147321621932896, -0.05537073974831505, -0.08534335174605766, 0.11059573621119713], [3.7373737373737375, -0.08878066619305917, 0.014796808860952533, -0.13818906710104661, -0.06589427817724174, 0.28170880605586546, 0.10955920917740783, -0.02015679142073698, -0.01877129827683726, -0.07646078662728567, 0.06715058270304192], [3.8383838383838382, -0.047253840178428236, 0.017015835847618285, -0.17280974703737553, -0.05083165125080797, 0.30227151677304026, 0.060293682264223804, 0.0030806532128607143, 0.018117577178944355, -0.07361060927815385, 0.10372126533144078], [3.9393939393939394, -0.04736118243365934, 0.054709699202233675, -0.17030897699961742, -0.10064957273798686, 0.3521683449511173, 0.023624747828705092, 0.022429306357269838, 0.0036858737501068266, -0.06429945776364304, 0.06149641114817942], [4.040404040404041, -0.04827631583920879, 0.06432962232917785, -0.16653192889766033, -0.11017412749414786, 0.33048714206251034, 0.058610373379815235, 0.03060477465435208, 0.044599179571501696, -0.0625218092834249, 0.09861715552375808], [4.141414141414141, -0.06175272203444008, 0.07861574386551301, -0.16679012332128001, -0.14903094842071088, 0.3549322736731319, 0.04731467327244801, -0.0011179566519914433, 0.06246611756643977, -0.026722503179361236, 0.08261907657201392], [4.242424242424242, -0.07147109213590738, 0.036591663103636124, -0.16212297536753614, -0.16662762483528348, 0.39699001884426144, 0.021217344221395366, 0.017785778857058947, 0.05589475831932168, -0.005159675016920096, 0.08533657439378349], [4.343434343434343, -0.06156612365994473, 0.07052361827399914, -0.1286827513915955, -0.2097235764774755, 0.3745001802931858, -0.028650428878116183, 0.027807134538143055, 0.03700606285622121, 0.011322573374108802, 0.12247857705133283], [4.444444444444445, -0.061023573244367586, 0.07766957111828347, -0.0971456068465858, -0.24884377928945917, 0.40678948610299565, -0.03795041605295815, 0.010789132304876672, 0.07235823908202885, 0.020694708209828293, 0.1486506935123779], [4.545454545454545, -0.03670662190748248, 0.12309474509322568, -0.10719234484418688, -0.27435264380121505, 0.41482516349138404, -0.06534556384698419, 0.011044814224921488, 0.07457515260365657, 0.05079870134692701, 0.1459284157762297], [4.646464646464646, -0.041896770273282966, 0.12895794766288107, -0.0628764857918505, -0.23924344030623892, 0.3991025700015684, -0.07327582364612736, 0.0042068657563901135, 0.041771295766105034, 0.005319532340721897, 0.09991773289038056], [4.747474747474747, 0.007736483889979391, 0.14508506869913732, -0.03196651689143532, -0.21925665436416678, 0.4312191176579487, -0.06556675454874346, 0.04321344541808852, 0.001958729628630626, 0.019984073085888975, 0.05458052318582776], [4.848484848484849, -0.010589634939731269, 0.1582901893016959, -0.03381553095601061, -0.2074333140019633, 0.4628590588915211, -0.1041508024736738, 0.052650714729334275, 0.03260816288551628, 0.04251669413508402, 0.046323806368643], [4.94949494949495, -0.006758740029182659, 0.16334558184769918, -0.05648874819389306, -0.24640979889864262, 0.43767933120734903, -0.0969930036851895, 0.07875860888044017, 0.03695891486750056, 0.09135363503012672, 0.016870174963486265], [5.05050505050505, 0.03357991190987265, 0.1865417753415465, -0.08848983899999331, -0.22345842180802689, 0.4039215545454975, -0.1367151029980727, 0.10225730087264484, -0.008291198336339158, 0.1345287986320984, 0.05461224969739902], [5.151515151515151, 0.04407437644705686, 0.1398225446487328, -0.07460839721423956, -0.2511227128145298, 0.44960125178555455, -0.08779233788057954, 0.13131039620154716, -0.026906885067693478, 0.10969308132897909, 0.0762398845772686], [5.252525252525253, 0.05752463106165338, 0.17873811460041866, -0.029121495997670444, -0.22973254651069508, 0.4196702545788887, -0.038766630921022456, 0.12455881380915587, 0.015477974241685354, 0.0785605522140626, 0.07647011755117188], [5.353535353535354, 0.029792250565538275, 0.1635840768992899, -0.059135261666194316, -0.1827474052290238, 0.39451303986074365, -0.06505224288481898, 0.1491332110712792, -0.02310076052172424, 0.08378240235746384, 0.09840756494285369], [5.454545454545454, 0.04437432477147885, 0.1254457539860342, -0.10600360186671678, -0.22439084747283627, 0.38148476893264266, -0.09316754634224639, 0.11477992947708791, -0.01646365000623187, 0.09313346900808982, 0.13742215183802733], [5.555555555555555, 0.00725688473984519, 0.10684672101856142, -0.1364985773812838, -0.21481697899883884, 0.43134138035714414, -0.10905322659769501, 0.12430354513867461, 0.009425453531509274, 0.11327904194745417, 0.1848133479545144], [5.656565656565657, 0.04229807988717309, 0.07388842583545777, -0.16407390326523053, -0.22715470621237144, 0.47574592165325086, -0.06407867458765108, 0.07570558124946919, -0.016151473769357685, 0.1550158460781738, 0.1541833723599108], [5.757575757575758, 0.06414951997487414, 0.041905186283800584, -0.20121864652639987, -0.18619756420763028, 0.48548415092398695, -0.07234237688335893, 0.11558980650643244, -0.060365213748987984, 0.19402627231109346, 0.18514960143370585], [5.858585858585858, 0.036102111042856544, 0.04428119552842414, -0.19184987877186466, -0.16759391405061003, 0.46808547802156747, -0.05445043756728942, 0.1611902517345447, -0.0806960801561219, 0.17325022777625712, 0.21109282488354053], [5.959595959595959, 0.0388619661086264, 0.07697756462420804, -0.21901678664659346, -0.21088251437073038, 0.4469529320443068, -0.03189398488508812, 0.1527600662842265, -0.08835854057752976, 0.19929611265587915, 0.21414559708654973], [6.0606060606060606, 0.044419813943095826, 0.07704932151835248, -0.22162776370563889, -0.18279954948997768, 0.43745179615976626, 0.012057050023569243, 0.14126104382172355, -0.09772771616168296, 0.2480021561170131, 0.17075966035122853], [6.161616161616162, 0.0293919466040587, 0.09628679775760414, -0.21345353132666534, -0.16158790085796682, 0.41295341432153115, -0.02136008871580552, 0.10270799769219524, -0.1226763868019076, 0.22824597255102075, 0.12965556154659846], [6.262626262626262, 0.04564435949439078, 0.05196690178387799, -0.22298741063320052, -0.1146642424886295, 0.4436949339530324, 0.021228469323236444, 0.10962647056960442, -0.09477004317643734, 0.1954711682616546, 0.09237466036194103], [6.363636363636363, 0.03357153001547091, 0.05649738388228317, -0.20652514110255965, -0.07882950990395342, 0.4764777270216095, -0.007838181022085298, 0.08763409061113081, -0.11311310851691121, 0.18134199679889082, 0.0825493114705495], [6.4646464646464645, 0.025469373516761297, 0.09052725656000535, -0.16148678808359251, -0.07318895395087763, 0.4698903534786442, -0.04701383201571503, 0.04785419172648474, -0.12763807853193915, 0.16723427621379736, 0.08067371440030938], [6.565656565656566, 0.03566856473032375, 0.07202529604033389, -0.16920908691196412, -0.09209018969215656, 0.4725715462762856, -0.011278091902739616, 0.02577915297387283, -0.16011133048804213, 0.16063739690836396, 0.08739144181477372], [6.666666666666667, 0.026497867404432746, 0.046630237708531905, -0.1469944992135201, -0.10602816207670562, 0.4940924336755083, 0.029727614455333652, -0.01727422796590388, -0.1782547655935208, 0.1311054693602664, 0.10592021902289572], [6.767676767676767, -0.01573488604527351, 0.022014320951948437, -0.10600938909884594, -0.12163698409322557, 0.4709177406400744, 0.03330217287048575, -0.018173767598123718, -0.18894490821865886, 0.15452738476646866, 0.1506031572182367], [6.8686868686868685, -0.06174684261619595, -0.0024182923039953556, -0.07034863154647328, -0.10881376014035689, 0.47266524076830685, -0.015247530019916862, 0.010936258231087435, -0.1574355278479936, 0.19093208683137358, 0.1334526720122523], [6.96969696969697, -0.07471006911119457, -0.04248178309211134, -0.11326136263389561, -0.13392139512570686, 0.4959093483440511, 0.006413200569938375, -0.011912395740725404, -0.1860760258618414, 0.14214337541612293, 0.11581905645872033], [7.070707070707071, -0.10019767260625975, -0.03359992801155262, -0.09146664596681614, -0.15862047103924704, 0.4808310115785269, -0.04303156503267201, 0.029894484111694528, -0.22289134711340916, 0.15846281761540576, 0.11757734027170894], [7.171717171717171, -0.12269881018888219, 0.003800770523692071, -0.11298989439040688, -0.18566736517552723, 0.4470521373919426, -0.03657861852557179, 0.02987286232007734, -0.21000211208124842, 0.2072996742741345, 0.12085303633523778], [7.2727272727272725, -0.1014972391934251, -0.035096748778937245, -0.07960693297627894, -0.15208033387881087, 0.4548649644391211, -0.05554474836706588, 0.028800932683484423, -0.2405992345859126, 0.18037594385699057, 0.15560564784157527], [7.373737373737374, -0.10958131841579727, -0.023779024709490088, -0.09937792463449195, -0.12132259881713511, 0.46478683418505756, -0.01518104322954688, -0.014038344165179698, -0.2297997841917397, 0.22160772573260698, 0.19846341915151278], [7.474747474747475, -0.1274251700075184, -0.003367152277770638, -0.08494192086180075, -0.10915181659887285, 0.43971836780397344, -0.0014286334729322198, -0.04944794992097491, -0.19157967500447054, 0.22406252663941598, 0.21260827046311204], [7.575757575757575, -0.14964366031600496, 0.009923609236356466, -0.08014198852953221, -0.13738512429451197, 0.42437887456180917, -0.03262934442536983, -0.01569034586193163, -0.15204587438604486, 0.19999964404390969, 0.20317072123107874], [7.6767676767676765, -0.1856109916191953, 0.04287796882330508, -0.06938092492896002, -0.09147110053054353, 0.3774242832103167, -0.03704241693127818, 0.01911766891058029, -0.1606873844011886, 0.20202390208331306, 0.22373694528582524], [7.777777777777778, -0.1734165089259561, 0.08027567183205055, -0.106642942915981, -0.06013042447797571, 0.3338235237049113, -0.016731540979653483, 0.03962409930296523, -0.19251528433599605, 0.2330492802421027, 0.25120656714911366], [7.878787878787879, -0.13754302945065272, 0.06904694142373273, -0.08956825479771836, -0.07772484832358842, 0.3458352372616045, 0.026975186512125857, 0.05001429396709758, -0.14675341990919755, 0.22477846055737993, 0.20954475827102573], [7.979797979797979, -0.1154445702290253, 0.02723191767299997, -0.06589380556944094, -0.08252478222265608, 0.3107609710084065, -0.007525451981151645, 0.045930688630911355, -0.19187241127019297, 0.26713403039478295, 0.1902362598059307], [8.080808080808081, -0.1330924783810021, 0.002020726385286914, -0.023158578343614615, -0.0950129909993226, 0.2895359485709049, -0.022310411951264066, 0.0015094859704258903, -0.152525547121304, 0.3053679631142763, 0.1936642440662487], [8.181818181818182, -0.12358197826610594, 0.015574020844850751, -0.03518627732613972, -0.07211609212762661, 0.28907911641615525, -0.020838801556179766, 0.003680999834726935, -0.13004639625984515, 0.2946701503150657, 0.15778819836957253], [8.282828282828282, -0.09383113317242703, 0.030643651870428397, 0.0010881404916358167, -0.07230242400430192, 0.2472497473992361, -0.005863413183986532, -0.007758464359823352, -0.11014371434069124, 0.2761809648360739, 0.1479798884068512], [8.383838383838384, -0.10349482617756095, 0.031979411440701364, -0.010350715114487239, -0.07192129987853878, 0.2831048953038822, -0.0194050742717551, 0.03902795589514788, -0.07442384327684108, 0.30811764784348444, 0.17786540169357537], [8.484848484848484, -0.06209490242081619, 0.014979877640041068, -0.04058269119397151, -0.025307097849346566, 0.24381901377457915, 0.008711122000173654, 0.07661464910340966, -0.09020166329910108, 0.2817228705841981, 0.1567256027474868], [8.585858585858587, -0.043518423691712646, -0.021429156838581594, -0.029868307621703893, -0.048199937238869534, 0.23041487720491904, 0.01398252984889332, 0.060166526615218596, -0.10178973952826943, 0.2992510829885515, 0.19253973214973263], [8.686868686868687, -0.01762112491587657, -0.020773221453692255, -0.05036615735874637, -0.06609845895216682, 0.240801660792263, 0.04153155038058079, 0.04236436032503353, -0.055450972897371, 0.3157037424532501, 0.17188996034211532], [8.787878787878787, -0.04184399833670781, -0.035052895299125836, -0.05679081627234446, -0.0249383670068481, 0.23665190937100722, 0.008048058975088625, 0.017940057685973673, -0.043202771794092244, 0.27550948787730695, 0.18791449903009613], [8.88888888888889, -0.040828158449785185, -0.06181765765282443, -0.024858763248980634, -0.047278677397478895, 0.2384520830046964, 0.039661233029641633, 0.06254244757536498, -0.08296404617005032, 0.3006221119068058, 0.18727839222943138], [8.98989898989899, 0.004493199239191455, -0.027117411076919028, -0.0313541344735637, -0.028288846878770764, 0.1924393962955479, 0.07368820984098222, 0.10637781429439538, -0.09336413480921292, 0.3373692973935591, 0.18790828504253254], [9.09090909090909, -0.010422416492571035, -0.017666718910315113, -0.05937602291976912, -0.00786540414564419, 0.1562641571847111, 0.06601155002829202, 0.14461255614525714, -0.061740305245456206, 0.375527214290871, 0.17191070229543567], [9.191919191919192, -0.039494115193602825, -0.011424543498349945, -0.08822232547517836, 0.03233886016372133, 0.20346311334231096, 0.04604391145505446, 0.09635790227204241, -0.02783057153504581, 0.3368274740102947, 0.21130261904181422], [9.292929292929292, -0.07929258813690329, -0.040356676295205104, -0.1293509895302487, -0.012571494854045039, 0.16589488523073076, 0.09424610666558159, 0.0992363014011809, -0.05395995538580074, 0.2974914858995095, 0.2298798095139237], [9.393939393939394, -0.029332861821286117, -0.009960771476621173, -0.09936101591901195, 0.031486724725836406, 0.1454438387779336, 0.11835154852973953, 0.08610118163206074, -0.023992665447484043, 0.30171006900005776, 0.19907811974383907], [9.494949494949495, -0.052685801759972034, 0.008034848602598125, -0.07555951260869927, -0.005708023504016134, 0.17883731806800734, 0.07011373093992423, 0.03998700850390885, -0.012739420371661104, 0.3001762287334841, 0.24112715817093477], [9.595959595959595, -0.06964279144264567, 0.035098437765731336, -0.1238767917029678, 0.022387567546562095, 0.1716371963877844, 0.09257896495266021, 0.02484062573114524, -0.028631194167612582, 0.25768137932695867, 0.2610567484922318], [9.696969696969697, -0.08536842250771332, -0.014364682539267752, -0.12780966754190493, 0.05577709148843432, 0.164639764742484, 0.07675615570336677, 0.0030018372377227168, -0.032735478780064664, 0.2580825199168547, 0.25382636768524725], [9.797979797979798, -0.07170286919442263, 0.019449100108443168, -0.11266297257609445, 0.036815671466108854, 0.15520338355847604, 0.04371819296910099, 0.02747056571858382, -0.0041507737310640044, 0.23248258788209922, 0.2892550803157584], [9.8989898989899, -0.10660384838470854, 0.003250794230012316, -0.14108057940889268, 0.06877462416590285, 0.19753006438936263, 0.08203145629756728, 0.019625805026996415, 0.004620084882797406, 0.2093912741430623, 0.3085029251537779], [10.0, -0.10556201201957041, -0.024037542558377006, -0.1677846388924425, 0.058307165965912885, 0.16237421363695437, 0.09484153541073674, 0.055663220667528705, 0.011313760483536387, 0.21586278173134293, 0.30652249387998526]]}, \"id\": \"el18214555277968\"});\n",
" }(mpld3);\n",
"}else if(typeof define === \"function\" && define.amd){\n",
" // require.js is available: use it to load d3/mpld3\n",
" require.config({paths: {d3: \"https://mpld3.github.io/js/d3.v3.min\"}});\n",
" require([\"d3\"], function(d3){\n",
" window.d3 = d3;\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/mpld3.v0.2.js\", function(){\n",
" \n",
" mpld3.register_plugin(\"interactive_legend\", InteractiveLegend);\n",
" InteractiveLegend.prototype = Object.create(mpld3.Plugin.prototype);\n",
" InteractiveLegend.prototype.constructor = InteractiveLegend;\n",
" InteractiveLegend.prototype.requiredProps = [\"line_ids\", \"labels\"];\n",
" InteractiveLegend.prototype.defaultProps = {}\n",
" function InteractiveLegend(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" InteractiveLegend.prototype.draw = function(){\n",
" var labels = new Array();\n",
" for(var i=0; i<this.props.labels.length; i++){\n",
" var obj = {}\n",
" obj.label = this.props.labels[i]\n",
" \n",
" var line_ids = this.props.line_ids[i]\n",
" lines = []\n",
" console.log(line_ids)\n",
" for(var j=0; j<line_ids.length; j++){\n",
" var line = mpld3.get_element(line_ids[j], this.fig)\n",
" console.log(line)\n",
" lines.push(mpld3.get_element(line_ids[j], this.fig))\n",
" }\n",
" \n",
" obj.lines = lines\n",
" obj.visible = false;\n",
" labels.push(obj);\n",
" }\n",
" \n",
" var ax = this.fig.axes[0]\n",
" var legend = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"legend\");\n",
" \n",
" // add the rectangles\n",
" legend.selectAll(\"rect\")\n",
" .data(labels)\n",
" .enter().append(\"rect\")\n",
" .attr(\"height\",10)\n",
" .attr(\"width\", 25)\n",
" .attr(\"x\",ax.width+10+ax.position[0])\n",
" .attr(\"y\",function(d,i) {\n",
" return ax.position[1]+ i * 25 - 10;})\n",
" .attr(\"stroke\", function(d) {\n",
" console.log(d)\n",
" return d.lines[0].props.edgecolor})\n",
" .attr(\"class\", \"legend-box\")\n",
" .style(\"fill\", \"white\")\n",
" .on(\"click\", click)\n",
" \n",
" // add the text\n",
" legend.selectAll(\"text\")\n",
" .data(labels)\n",
" .enter().append(\"text\")\n",
" .attr(\"x\", function (d) {\n",
" return ax.width+10+ax.position[0] + 25 + 15\n",
" })\n",
" .attr(\"y\", function(d,i) { \n",
" return ax.position[1]+ i * 25\n",
" })\n",
" .text(function(d) { return d.label })\n",
" \n",
" // specify the action on click\n",
" function click(d,i){\n",
" d.visible = !d.visible;\n",
" d3.select(this)\n",
" .style(\"fill\",function(d, i) {\n",
" var color = d.lines[0].props.edgecolor\n",
" return d.visible ? color : \"white\";\n",
" })\n",
" \n",
" for(var i=0; i<d.lines.length; i++){\n",
" d3.select(d.lines[i].path[0][0])\n",
" .style(\"stroke-opacity\", d.visible ? 1 : d.lines[0].props.alpha);\n",
" }\n",
" \n",
" }\n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el18214555277968732500167\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.30000000000000004, 0.5], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214555278608\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569958288\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569956944\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569960272\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569959696\"}, {\"color\": \"#FF0000\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569884816\"}, {\"color\": \"#FF0000\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570050640\"}, {\"color\": \"#FF0000\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569899216\"}, {\"color\": \"#FF0000\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051536\"}, {\"color\": \"#FF0000\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051984\"}], \"markers\": [], \"id\": \"el18214555307024\", \"ydomain\": [-0.30000000000000004, 0.5], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"type\": \"reset\"}, {\"enabled\": false, \"button\": true, \"type\": \"zoom\"}, {\"enabled\": false, \"button\": true, \"type\": \"boxzoom\"}, {\"line_ids\": [[\"el18214555278608\", \"el18214569958288\", \"el18214569956944\", \"el18214569960272\", \"el18214569959696\"], [\"el18214569884816\", \"el18214570050640\", \"el18214569899216\", \"el18214570051536\", \"el18214570051984\"]], \"labels\": [\"a\", \"b\"], \"type\": \"interactive_legend\"}], \"data\": {\"data01\": [[0.0, -0.013712535152610473, 0.045592914719516014, -0.010317929389271752, 0.01770043044929841, -0.038429496115086406, 0.047826887662544774, -0.0015466985043633419, -0.023453538609098535, 0.026704342002708006, 0.00797098889985467], [0.10101010101010101, -0.011761339295849316, 0.04090522239512089, -0.043354834835920716, 0.009550144337282074, -0.06422750032859464, -6.178692152858378e-06, -0.0031711642924225018, -0.016910075591115258, 0.029352666037830814, 0.006156681886784088], [0.20202020202020202, 0.001706226235816788, 0.07074606899222234, -0.08572532012845989, 0.0029603677799324712, -0.029056502954477502, -0.03968115639937342, 0.033315872466825595, -0.01724912865423449, 0.04593701239678767, 0.03717664320276533], [0.30303030303030304, 0.04019186150591789, 0.06307166733981107, -0.1079056085765249, 0.010036955660098833, -0.07626451154558211, -0.027812238532187873, 0.033863599947871144, -0.030336193494615457, 0.02068902115523147, 0.07262732613172251], [0.40404040404040403, 0.05618965203309743, 0.05686178237325264, -0.07245920155264324, 0.02496585312354881, -0.07693954101456914, -0.01781714549654937, 0.04798301473532824, -0.016351042140838677, 0.0026890756111072056, 0.06534449506807613], [0.5050505050505051, 0.09181479219807133, 0.09499124176393471, -0.036405860318113416, -0.006487838239754174, -0.04692236312141079, -0.059240527064589384, 0.08897715619923915, -0.04573110300128188, -0.03705927476247284, 0.055240242912334106], [0.6060606060606061, 0.13332499802109876, 0.09992962499149434, -0.06718132936335025, -0.03703464693469597, -0.0032050677460365995, -0.08555073950313907, 0.04835488914524919, -0.052140914371985016, -0.02961405697392152, 0.09652319895678221], [0.7070707070707071, 0.15650160222243606, 0.13969495168435186, -0.10584959132965929, -0.0837093595118106, 0.03551014966393041, -0.04845234850756059, 0.04848536944498046, -0.08323090307250125, -0.005187551081169368, 0.09940669421997309], [0.8080808080808081, 0.1589865492807072, 0.1821916982455648, -0.13467339773233147, -0.11688657785926858, 0.06809335200108632, -0.008652927378251553, 0.06755567223242998, -0.13138481043510664, -0.00038290089071909075, 0.05900347097191514], [0.9090909090909091, 0.14891548767402765, 0.18044234213810117, -0.1114133857968713, -0.13140071589896726, 0.1159216386342348, -0.01013368240465843, 0.028509105129215527, -0.14633659554008832, -0.0381200380620936, 0.06444068965148395], [1.0101010101010102, 0.16261859795945685, 0.13111871197040323, -0.08261657607056838, -0.12977314134998094, 0.14967719620741016, -0.011188652733569483, 0.007841862793785823, -0.15471265443666474, -0.05362008723527057, 0.1041708100075958], [1.1111111111111112, 0.17860205120583003, 0.12355946456048855, -0.07522675054078042, -0.12907331048586598, 0.10507124988068292, -0.03443291756386585, 0.04143335309230774, -0.15146580830964282, -0.04802627751901459, 0.06241179645175536], [1.2121212121212122, 0.1319577493387877, 0.1314352149178679, -0.09778685864573176, -0.17479177735700077, 0.11866282638709602, -0.06595133015475815, 0.07843289937451482, -0.1387209732178574, -0.004718587692638138, 0.051857774311640056], [1.3131313131313131, 0.0844389474007457, 0.15789810058264492, -0.1320682544185418, -0.15778497484696355, 0.07078598313203244, -0.03571816467780428, 0.04203313684980875, -0.14266724959994329, 0.021603505654336948, 0.022256980034056146], [1.4141414141414141, 0.04459123241286643, 0.15193767202732808, -0.08337919460177931, -0.19450252425666154, 0.06909612996028226, -0.016750780121222057, 0.035878614980084475, -0.18659109558219364, -0.00932383992172741, 0.013114787496014552], [1.5151515151515151, 0.08742132145111622, 0.13422326536891, -0.11073221378646549, -0.15380961068332177, 0.10989055707535432, 0.023478110625415115, -0.01341969271995054, -0.1584799343692039, 4.051979567884674e-05, -0.012960062268476277], [1.6161616161616161, 0.0736983319685471, 0.12671618876073057, -0.0869811454657599, -0.14912298093323337, 0.13362466106348264, -0.0013759951515323401, 0.01368207775956629, -0.17655759399087875, -0.0029359849255892784, 0.001977767316141547], [1.7171717171717171, 0.10943810015135616, 0.146216433579349, -0.09820531950175024, -0.10834188944825919, 0.09185820618205313, 0.03810244028024743, -0.008388755312991793, -0.2172681581992612, -0.035447542328531506, -0.018997688626449002], [1.8181818181818181, 0.11756027529817764, 0.12933839531490815, -0.06819091801962703, -0.11200313109723106, 0.09682590571234966, 0.033984718939474724, 0.035998346314366686, -0.20527505055144646, -0.06382108793057312, 0.023141416959748848], [1.9191919191919191, 0.1559347181056656, 0.15817862303144797, -0.10038204999516892, -0.07765201653382012, 0.1317103954699735, 0.057603864624613865, -0.005697557954678606, -0.24823488144329336, -0.08300630879986062, 0.027519733182005963], [2.0202020202020203, 0.18459958949242142, 0.16904960585156908, -0.12299723685884585, -0.0836024252957395, 0.10849900922641618, 0.09989590191324982, 0.02777475613024468, -0.20271121421594349, -0.04034976681704794, 0.07713995721860017], [2.121212121212121, 0.14970236377454244, 0.20313130545355265, -0.16660629447845443, -0.07595344311820725, 0.15250229769932666, 0.05412309071327349, -0.017890862690098125, -0.23985159654332716, -0.08656017553164702, 0.067205528850281], [2.2222222222222223, 0.11044760141931648, 0.16884306959820125, -0.13873933978372152, -0.06169841128878781, 0.19082466949483684, 0.09397057068187756, -0.008850537082420245, -0.22093412305076449, -0.0901559590414821, 0.03624494228144913], [2.323232323232323, 0.1303900986868879, 0.13219374256822203, -0.12791680035103062, -0.10832690795420133, 0.18598552376513275, 0.08097020811082063, -0.03967278686393678, -0.19297100465507724, -0.09027113489029367, 0.003983241690989091], [2.4242424242424243, 0.08867420903265975, 0.15661297436166088, -0.13876628083086756, -0.1350443013882044, 0.1768531418003166, 0.08382772877349598, -0.018954858687961068, -0.16994612928361244, -0.127408560066511, 0.04774921366728242], [2.525252525252525, 0.10950378812294694, 0.10719341258330384, -0.17479195227507544, -0.1550937423663601, 0.1670077893285469, 0.08271210828803073, -0.0031889410673252606, -0.1374575703190142, -0.16434535947665768, 0.0875600229947202], [2.6262626262626263, 0.09525501300816866, 0.15277263379151867, -0.15372443959158755, -0.18189458800598055, 0.17472182350422572, 0.099246689318591, 0.0053141900916157305, -0.17625625854529384, -0.13077906602650144, 0.04865275026581731], [2.727272727272727, 0.05223260759425431, 0.19653620112984574, -0.12693667132414446, -0.17274842967140283, 0.14023144652734285, 0.11733151943669892, -0.015417000743674808, -0.1385603750030197, -0.17650914860899014, 0.01563397989086949], [2.8282828282828283, 0.0502750800387325, 0.18146052146445393, -0.14100843270181798, -0.12558976480271644, 0.0947859534109892, 0.1456764616001835, -0.05827584265290412, -0.13975875260645926, -0.14235701495668185, 0.050127577125916825], [2.929292929292929, 0.003427090952446886, 0.19197805039826385, -0.10429236255682009, -0.10515482199053552, 0.12321985197489037, 0.12417636229619503, -0.025853623983289095, -0.12196182132527195, -0.12669603977184274, 0.04918605451695799], [3.0303030303030303, 0.007444708592031723, 0.14273793749123917, -0.1486274195272101, -0.1431102425068246, 0.1652373095913917, 0.11543689992964284, -0.03573324106275962, -0.07930162362097724, -0.08155941712696221, 0.0761063104065195], [3.131313131313131, -0.031153589326259813, 0.14322159645918978, -0.16299729421621176, -0.14038449715459844, 0.2033268288945848, 0.11763921700009525, -0.0297237604645736, -0.04708795952297886, -0.1128526367154909, 0.09729646316342684], [3.2323232323232323, -0.026359130593084625, 0.15200672315814126, -0.1965594568799012, -0.14115654697101604, 0.22814548182367772, 0.14059288436145903, -0.017407006748027608, -0.06528612977452523, -0.10669985946719983, 0.09227499061147086], [3.3333333333333335, 0.00426738484685979, 0.11674562677391323, -0.15969660782924155, -0.13902006819652932, 0.2589930581817555, 0.13342445948747886, -0.04620951534291338, -0.09828196322460278, -0.10219433270522735, 0.11406731338581712], [3.4343434343434343, -0.0320971147419755, 0.11451365723238902, -0.14843930624351123, -0.09404312550087152, 0.2764701652799255, 0.11388668334866786, -0.08173426603161313, -0.09939238725868432, -0.07376873708150211, 0.06504600815056112], [3.5353535353535355, -0.059133268502872385, 0.09245099094168889, -0.17855496030010104, -0.08113941990270426, 0.252253477191925, 0.0651131212711607, -0.037967946731883376, -0.08353514331020181, -0.07683455234585887, 0.07561128139634632], [3.6363636363636362, -0.07988119457169826, 0.054394713226521826, -0.1850029606762342, -0.058641930378235355, 0.25347592012961734, 0.06387032396843821, -0.03147321621932896, -0.05537073974831505, -0.08534335174605766, 0.11059573621119713], [3.7373737373737375, -0.08878066619305917, 0.014796808860952533, -0.13818906710104661, -0.06589427817724174, 0.28170880605586546, 0.10955920917740783, -0.02015679142073698, -0.01877129827683726, -0.07646078662728567, 0.06715058270304192], [3.8383838383838382, -0.047253840178428236, 0.017015835847618285, -0.17280974703737553, -0.05083165125080797, 0.30227151677304026, 0.060293682264223804, 0.0030806532128607143, 0.018117577178944355, -0.07361060927815385, 0.10372126533144078], [3.9393939393939394, -0.04736118243365934, 0.054709699202233675, -0.17030897699961742, -0.10064957273798686, 0.3521683449511173, 0.023624747828705092, 0.022429306357269838, 0.0036858737501068266, -0.06429945776364304, 0.06149641114817942], [4.040404040404041, -0.04827631583920879, 0.06432962232917785, -0.16653192889766033, -0.11017412749414786, 0.33048714206251034, 0.058610373379815235, 0.03060477465435208, 0.044599179571501696, -0.0625218092834249, 0.09861715552375808], [4.141414141414141, -0.06175272203444008, 0.07861574386551301, -0.16679012332128001, -0.14903094842071088, 0.3549322736731319, 0.04731467327244801, -0.0011179566519914433, 0.06246611756643977, -0.026722503179361236, 0.08261907657201392], [4.242424242424242, -0.07147109213590738, 0.036591663103636124, -0.16212297536753614, -0.16662762483528348, 0.39699001884426144, 0.021217344221395366, 0.017785778857058947, 0.05589475831932168, -0.005159675016920096, 0.08533657439378349], [4.343434343434343, -0.06156612365994473, 0.07052361827399914, -0.1286827513915955, -0.2097235764774755, 0.3745001802931858, -0.028650428878116183, 0.027807134538143055, 0.03700606285622121, 0.011322573374108802, 0.12247857705133283], [4.444444444444445, -0.061023573244367586, 0.07766957111828347, -0.0971456068465858, -0.24884377928945917, 0.40678948610299565, -0.03795041605295815, 0.010789132304876672, 0.07235823908202885, 0.020694708209828293, 0.1486506935123779], [4.545454545454545, -0.03670662190748248, 0.12309474509322568, -0.10719234484418688, -0.27435264380121505, 0.41482516349138404, -0.06534556384698419, 0.011044814224921488, 0.07457515260365657, 0.05079870134692701, 0.1459284157762297], [4.646464646464646, -0.041896770273282966, 0.12895794766288107, -0.0628764857918505, -0.23924344030623892, 0.3991025700015684, -0.07327582364612736, 0.0042068657563901135, 0.041771295766105034, 0.005319532340721897, 0.09991773289038056], [4.747474747474747, 0.007736483889979391, 0.14508506869913732, -0.03196651689143532, -0.21925665436416678, 0.4312191176579487, -0.06556675454874346, 0.04321344541808852, 0.001958729628630626, 0.019984073085888975, 0.05458052318582776], [4.848484848484849, -0.010589634939731269, 0.1582901893016959, -0.03381553095601061, -0.2074333140019633, 0.4628590588915211, -0.1041508024736738, 0.052650714729334275, 0.03260816288551628, 0.04251669413508402, 0.046323806368643], [4.94949494949495, -0.006758740029182659, 0.16334558184769918, -0.05648874819389306, -0.24640979889864262, 0.43767933120734903, -0.0969930036851895, 0.07875860888044017, 0.03695891486750056, 0.09135363503012672, 0.016870174963486265], [5.05050505050505, 0.03357991190987265, 0.1865417753415465, -0.08848983899999331, -0.22345842180802689, 0.4039215545454975, -0.1367151029980727, 0.10225730087264484, -0.008291198336339158, 0.1345287986320984, 0.05461224969739902], [5.151515151515151, 0.04407437644705686, 0.1398225446487328, -0.07460839721423956, -0.2511227128145298, 0.44960125178555455, -0.08779233788057954, 0.13131039620154716, -0.026906885067693478, 0.10969308132897909, 0.0762398845772686], [5.252525252525253, 0.05752463106165338, 0.17873811460041866, -0.029121495997670444, -0.22973254651069508, 0.4196702545788887, -0.038766630921022456, 0.12455881380915587, 0.015477974241685354, 0.0785605522140626, 0.07647011755117188], [5.353535353535354, 0.029792250565538275, 0.1635840768992899, -0.059135261666194316, -0.1827474052290238, 0.39451303986074365, -0.06505224288481898, 0.1491332110712792, -0.02310076052172424, 0.08378240235746384, 0.09840756494285369], [5.454545454545454, 0.04437432477147885, 0.1254457539860342, -0.10600360186671678, -0.22439084747283627, 0.38148476893264266, -0.09316754634224639, 0.11477992947708791, -0.01646365000623187, 0.09313346900808982, 0.13742215183802733], [5.555555555555555, 0.00725688473984519, 0.10684672101856142, -0.1364985773812838, -0.21481697899883884, 0.43134138035714414, -0.10905322659769501, 0.12430354513867461, 0.009425453531509274, 0.11327904194745417, 0.1848133479545144], [5.656565656565657, 0.04229807988717309, 0.07388842583545777, -0.16407390326523053, -0.22715470621237144, 0.47574592165325086, -0.06407867458765108, 0.07570558124946919, -0.016151473769357685, 0.1550158460781738, 0.1541833723599108], [5.757575757575758, 0.06414951997487414, 0.041905186283800584, -0.20121864652639987, -0.18619756420763028, 0.48548415092398695, -0.07234237688335893, 0.11558980650643244, -0.060365213748987984, 0.19402627231109346, 0.18514960143370585], [5.858585858585858, 0.036102111042856544, 0.04428119552842414, -0.19184987877186466, -0.16759391405061003, 0.46808547802156747, -0.05445043756728942, 0.1611902517345447, -0.0806960801561219, 0.17325022777625712, 0.21109282488354053], [5.959595959595959, 0.0388619661086264, 0.07697756462420804, -0.21901678664659346, -0.21088251437073038, 0.4469529320443068, -0.03189398488508812, 0.1527600662842265, -0.08835854057752976, 0.19929611265587915, 0.21414559708654973], [6.0606060606060606, 0.044419813943095826, 0.07704932151835248, -0.22162776370563889, -0.18279954948997768, 0.43745179615976626, 0.012057050023569243, 0.14126104382172355, -0.09772771616168296, 0.2480021561170131, 0.17075966035122853], [6.161616161616162, 0.0293919466040587, 0.09628679775760414, -0.21345353132666534, -0.16158790085796682, 0.41295341432153115, -0.02136008871580552, 0.10270799769219524, -0.1226763868019076, 0.22824597255102075, 0.12965556154659846], [6.262626262626262, 0.04564435949439078, 0.05196690178387799, -0.22298741063320052, -0.1146642424886295, 0.4436949339530324, 0.021228469323236444, 0.10962647056960442, -0.09477004317643734, 0.1954711682616546, 0.09237466036194103], [6.363636363636363, 0.03357153001547091, 0.05649738388228317, -0.20652514110255965, -0.07882950990395342, 0.4764777270216095, -0.007838181022085298, 0.08763409061113081, -0.11311310851691121, 0.18134199679889082, 0.0825493114705495], [6.4646464646464645, 0.025469373516761297, 0.09052725656000535, -0.16148678808359251, -0.07318895395087763, 0.4698903534786442, -0.04701383201571503, 0.04785419172648474, -0.12763807853193915, 0.16723427621379736, 0.08067371440030938], [6.565656565656566, 0.03566856473032375, 0.07202529604033389, -0.16920908691196412, -0.09209018969215656, 0.4725715462762856, -0.011278091902739616, 0.02577915297387283, -0.16011133048804213, 0.16063739690836396, 0.08739144181477372], [6.666666666666667, 0.026497867404432746, 0.046630237708531905, -0.1469944992135201, -0.10602816207670562, 0.4940924336755083, 0.029727614455333652, -0.01727422796590388, -0.1782547655935208, 0.1311054693602664, 0.10592021902289572], [6.767676767676767, -0.01573488604527351, 0.022014320951948437, -0.10600938909884594, -0.12163698409322557, 0.4709177406400744, 0.03330217287048575, -0.018173767598123718, -0.18894490821865886, 0.15452738476646866, 0.1506031572182367], [6.8686868686868685, -0.06174684261619595, -0.0024182923039953556, -0.07034863154647328, -0.10881376014035689, 0.47266524076830685, -0.015247530019916862, 0.010936258231087435, -0.1574355278479936, 0.19093208683137358, 0.1334526720122523], [6.96969696969697, -0.07471006911119457, -0.04248178309211134, -0.11326136263389561, -0.13392139512570686, 0.4959093483440511, 0.006413200569938375, -0.011912395740725404, -0.1860760258618414, 0.14214337541612293, 0.11581905645872033], [7.070707070707071, -0.10019767260625975, -0.03359992801155262, -0.09146664596681614, -0.15862047103924704, 0.4808310115785269, -0.04303156503267201, 0.029894484111694528, -0.22289134711340916, 0.15846281761540576, 0.11757734027170894], [7.171717171717171, -0.12269881018888219, 0.003800770523692071, -0.11298989439040688, -0.18566736517552723, 0.4470521373919426, -0.03657861852557179, 0.02987286232007734, -0.21000211208124842, 0.2072996742741345, 0.12085303633523778], [7.2727272727272725, -0.1014972391934251, -0.035096748778937245, -0.07960693297627894, -0.15208033387881087, 0.4548649644391211, -0.05554474836706588, 0.028800932683484423, -0.2405992345859126, 0.18037594385699057, 0.15560564784157527], [7.373737373737374, -0.10958131841579727, -0.023779024709490088, -0.09937792463449195, -0.12132259881713511, 0.46478683418505756, -0.01518104322954688, -0.014038344165179698, -0.2297997841917397, 0.22160772573260698, 0.19846341915151278], [7.474747474747475, -0.1274251700075184, -0.003367152277770638, -0.08494192086180075, -0.10915181659887285, 0.43971836780397344, -0.0014286334729322198, -0.04944794992097491, -0.19157967500447054, 0.22406252663941598, 0.21260827046311204], [7.575757575757575, -0.14964366031600496, 0.009923609236356466, -0.08014198852953221, -0.13738512429451197, 0.42437887456180917, -0.03262934442536983, -0.01569034586193163, -0.15204587438604486, 0.19999964404390969, 0.20317072123107874], [7.6767676767676765, -0.1856109916191953, 0.04287796882330508, -0.06938092492896002, -0.09147110053054353, 0.3774242832103167, -0.03704241693127818, 0.01911766891058029, -0.1606873844011886, 0.20202390208331306, 0.22373694528582524], [7.777777777777778, -0.1734165089259561, 0.08027567183205055, -0.106642942915981, -0.06013042447797571, 0.3338235237049113, -0.016731540979653483, 0.03962409930296523, -0.19251528433599605, 0.2330492802421027, 0.25120656714911366], [7.878787878787879, -0.13754302945065272, 0.06904694142373273, -0.08956825479771836, -0.07772484832358842, 0.3458352372616045, 0.026975186512125857, 0.05001429396709758, -0.14675341990919755, 0.22477846055737993, 0.20954475827102573], [7.979797979797979, -0.1154445702290253, 0.02723191767299997, -0.06589380556944094, -0.08252478222265608, 0.3107609710084065, -0.007525451981151645, 0.045930688630911355, -0.19187241127019297, 0.26713403039478295, 0.1902362598059307], [8.080808080808081, -0.1330924783810021, 0.002020726385286914, -0.023158578343614615, -0.0950129909993226, 0.2895359485709049, -0.022310411951264066, 0.0015094859704258903, -0.152525547121304, 0.3053679631142763, 0.1936642440662487], [8.181818181818182, -0.12358197826610594, 0.015574020844850751, -0.03518627732613972, -0.07211609212762661, 0.28907911641615525, -0.020838801556179766, 0.003680999834726935, -0.13004639625984515, 0.2946701503150657, 0.15778819836957253], [8.282828282828282, -0.09383113317242703, 0.030643651870428397, 0.0010881404916358167, -0.07230242400430192, 0.2472497473992361, -0.005863413183986532, -0.007758464359823352, -0.11014371434069124, 0.2761809648360739, 0.1479798884068512], [8.383838383838384, -0.10349482617756095, 0.031979411440701364, -0.010350715114487239, -0.07192129987853878, 0.2831048953038822, -0.0194050742717551, 0.03902795589514788, -0.07442384327684108, 0.30811764784348444, 0.17786540169357537], [8.484848484848484, -0.06209490242081619, 0.014979877640041068, -0.04058269119397151, -0.025307097849346566, 0.24381901377457915, 0.008711122000173654, 0.07661464910340966, -0.09020166329910108, 0.2817228705841981, 0.1567256027474868], [8.585858585858587, -0.043518423691712646, -0.021429156838581594, -0.029868307621703893, -0.048199937238869534, 0.23041487720491904, 0.01398252984889332, 0.060166526615218596, -0.10178973952826943, 0.2992510829885515, 0.19253973214973263], [8.686868686868687, -0.01762112491587657, -0.020773221453692255, -0.05036615735874637, -0.06609845895216682, 0.240801660792263, 0.04153155038058079, 0.04236436032503353, -0.055450972897371, 0.3157037424532501, 0.17188996034211532], [8.787878787878787, -0.04184399833670781, -0.035052895299125836, -0.05679081627234446, -0.0249383670068481, 0.23665190937100722, 0.008048058975088625, 0.017940057685973673, -0.043202771794092244, 0.27550948787730695, 0.18791449903009613], [8.88888888888889, -0.040828158449785185, -0.06181765765282443, -0.024858763248980634, -0.047278677397478895, 0.2384520830046964, 0.039661233029641633, 0.06254244757536498, -0.08296404617005032, 0.3006221119068058, 0.18727839222943138], [8.98989898989899, 0.004493199239191455, -0.027117411076919028, -0.0313541344735637, -0.028288846878770764, 0.1924393962955479, 0.07368820984098222, 0.10637781429439538, -0.09336413480921292, 0.3373692973935591, 0.18790828504253254], [9.09090909090909, -0.010422416492571035, -0.017666718910315113, -0.05937602291976912, -0.00786540414564419, 0.1562641571847111, 0.06601155002829202, 0.14461255614525714, -0.061740305245456206, 0.375527214290871, 0.17191070229543567], [9.191919191919192, -0.039494115193602825, -0.011424543498349945, -0.08822232547517836, 0.03233886016372133, 0.20346311334231096, 0.04604391145505446, 0.09635790227204241, -0.02783057153504581, 0.3368274740102947, 0.21130261904181422], [9.292929292929292, -0.07929258813690329, -0.040356676295205104, -0.1293509895302487, -0.012571494854045039, 0.16589488523073076, 0.09424610666558159, 0.0992363014011809, -0.05395995538580074, 0.2974914858995095, 0.2298798095139237], [9.393939393939394, -0.029332861821286117, -0.009960771476621173, -0.09936101591901195, 0.031486724725836406, 0.1454438387779336, 0.11835154852973953, 0.08610118163206074, -0.023992665447484043, 0.30171006900005776, 0.19907811974383907], [9.494949494949495, -0.052685801759972034, 0.008034848602598125, -0.07555951260869927, -0.005708023504016134, 0.17883731806800734, 0.07011373093992423, 0.03998700850390885, -0.012739420371661104, 0.3001762287334841, 0.24112715817093477], [9.595959595959595, -0.06964279144264567, 0.035098437765731336, -0.1238767917029678, 0.022387567546562095, 0.1716371963877844, 0.09257896495266021, 0.02484062573114524, -0.028631194167612582, 0.25768137932695867, 0.2610567484922318], [9.696969696969697, -0.08536842250771332, -0.014364682539267752, -0.12780966754190493, 0.05577709148843432, 0.164639764742484, 0.07675615570336677, 0.0030018372377227168, -0.032735478780064664, 0.2580825199168547, 0.25382636768524725], [9.797979797979798, -0.07170286919442263, 0.019449100108443168, -0.11266297257609445, 0.036815671466108854, 0.15520338355847604, 0.04371819296910099, 0.02747056571858382, -0.0041507737310640044, 0.23248258788209922, 0.2892550803157584], [9.8989898989899, -0.10660384838470854, 0.003250794230012316, -0.14108057940889268, 0.06877462416590285, 0.19753006438936263, 0.08203145629756728, 0.019625805026996415, 0.004620084882797406, 0.2093912741430623, 0.3085029251537779], [10.0, -0.10556201201957041, -0.024037542558377006, -0.1677846388924425, 0.058307165965912885, 0.16237421363695437, 0.09484153541073674, 0.055663220667528705, 0.011313760483536387, 0.21586278173134293, 0.30652249387998526]]}, \"id\": \"el18214555277968\"});\n",
" });\n",
" });\n",
"}else{\n",
" // require.js not available: dynamically load d3 & mpld3\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/d3.v3.min.js\", function(){\n",
" mpld3_load_lib(\"https://mpld3.github.io/js/mpld3.v0.2.js\", function(){\n",
" \n",
" mpld3.register_plugin(\"interactive_legend\", InteractiveLegend);\n",
" InteractiveLegend.prototype = Object.create(mpld3.Plugin.prototype);\n",
" InteractiveLegend.prototype.constructor = InteractiveLegend;\n",
" InteractiveLegend.prototype.requiredProps = [\"line_ids\", \"labels\"];\n",
" InteractiveLegend.prototype.defaultProps = {}\n",
" function InteractiveLegend(fig, props){\n",
" mpld3.Plugin.call(this, fig, props);\n",
" };\n",
"\n",
" InteractiveLegend.prototype.draw = function(){\n",
" var labels = new Array();\n",
" for(var i=0; i<this.props.labels.length; i++){\n",
" var obj = {}\n",
" obj.label = this.props.labels[i]\n",
" \n",
" var line_ids = this.props.line_ids[i]\n",
" lines = []\n",
" console.log(line_ids)\n",
" for(var j=0; j<line_ids.length; j++){\n",
" var line = mpld3.get_element(line_ids[j], this.fig)\n",
" console.log(line)\n",
" lines.push(mpld3.get_element(line_ids[j], this.fig))\n",
" }\n",
" \n",
" obj.lines = lines\n",
" obj.visible = false;\n",
" labels.push(obj);\n",
" }\n",
" \n",
" var ax = this.fig.axes[0]\n",
" var legend = this.fig.canvas.append(\"svg:g\")\n",
" .attr(\"class\", \"legend\");\n",
" \n",
" // add the rectangles\n",
" legend.selectAll(\"rect\")\n",
" .data(labels)\n",
" .enter().append(\"rect\")\n",
" .attr(\"height\",10)\n",
" .attr(\"width\", 25)\n",
" .attr(\"x\",ax.width+10+ax.position[0])\n",
" .attr(\"y\",function(d,i) {\n",
" return ax.position[1]+ i * 25 - 10;})\n",
" .attr(\"stroke\", function(d) {\n",
" console.log(d)\n",
" return d.lines[0].props.edgecolor})\n",
" .attr(\"class\", \"legend-box\")\n",
" .style(\"fill\", \"white\")\n",
" .on(\"click\", click)\n",
" \n",
" // add the text\n",
" legend.selectAll(\"text\")\n",
" .data(labels)\n",
" .enter().append(\"text\")\n",
" .attr(\"x\", function (d) {\n",
" return ax.width+10+ax.position[0] + 25 + 15\n",
" })\n",
" .attr(\"y\", function(d,i) { \n",
" return ax.position[1]+ i * 25\n",
" })\n",
" .text(function(d) { return d.label })\n",
" \n",
" // specify the action on click\n",
" function click(d,i){\n",
" d.visible = !d.visible;\n",
" d3.select(this)\n",
" .style(\"fill\",function(d, i) {\n",
" var color = d.lines[0].props.edgecolor\n",
" return d.visible ? color : \"white\";\n",
" })\n",
" \n",
" for(var i=0; i<d.lines.length; i++){\n",
" d3.select(d.lines[i].path[0][0])\n",
" .style(\"stroke-opacity\", d.visible ? 1 : d.lines[0].props.alpha);\n",
" }\n",
" \n",
" }\n",
" };\n",
" \n",
" mpld3.draw_figure(\"fig_el18214555277968732500167\", {\"axes\": [{\"xlim\": [0.0, 10.0], \"yscale\": \"linear\", \"axesbg\": \"#FFFFFF\", \"texts\": [], \"zoomable\": true, \"images\": [], \"xdomain\": [0.0, 10.0], \"ylim\": [-0.30000000000000004, 0.5], \"paths\": [], \"sharey\": [], \"sharex\": [], \"axesbgalpha\": null, \"axes\": [{\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"bottom\", \"nticks\": 6, \"tickvalues\": null}, {\"scale\": \"linear\", \"tickformat\": null, \"grid\": {\"gridOn\": false}, \"fontsize\": 10.0, \"position\": \"left\", \"nticks\": 10, \"tickvalues\": null}], \"lines\": [{\"color\": \"#0000FF\", \"yindex\": 1, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214555278608\"}, {\"color\": \"#0000FF\", \"yindex\": 2, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569958288\"}, {\"color\": \"#0000FF\", \"yindex\": 3, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569956944\"}, {\"color\": \"#0000FF\", \"yindex\": 4, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569960272\"}, {\"color\": \"#0000FF\", \"yindex\": 5, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.1, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569959696\"}, {\"color\": \"#FF0000\", \"yindex\": 6, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569884816\"}, {\"color\": \"#FF0000\", \"yindex\": 7, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570050640\"}, {\"color\": \"#FF0000\", \"yindex\": 8, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214569899216\"}, {\"color\": \"#FF0000\", \"yindex\": 9, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051536\"}, {\"color\": \"#FF0000\", \"yindex\": 10, \"coordinates\": \"data\", \"dasharray\": \"10,0\", \"zorder\": 2, \"alpha\": 0.2, \"xindex\": 0, \"linewidth\": 4, \"data\": \"data01\", \"id\": \"el18214570051984\"}], \"markers\": [], \"id\": \"el18214555307024\", \"ydomain\": [-0.30000000000000004, 0.5], \"collections\": [], \"xscale\": \"linear\", \"bbox\": [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], \"height\": 640.0, \"width\": 960.0, \"plugins\": [{\"type\": \"reset\"}, {\"enabled\": false, \"button\": true, \"type\": \"zoom\"}, {\"enabled\": false, \"button\": true, \"type\": \"boxzoom\"}, {\"line_ids\": [[\"el18214555278608\", \"el18214569958288\", \"el18214569956944\", \"el18214569960272\", \"el18214569959696\"], [\"el18214569884816\", \"el18214570050640\", \"el18214569899216\", \"el18214570051536\", \"el18214570051984\"]], \"labels\": [\"a\", \"b\"], \"type\": \"interactive_legend\"}], \"data\": {\"data01\": [[0.0, -0.013712535152610473, 0.045592914719516014, -0.010317929389271752, 0.01770043044929841, -0.038429496115086406, 0.047826887662544774, -0.0015466985043633419, -0.023453538609098535, 0.026704342002708006, 0.00797098889985467], [0.10101010101010101, -0.011761339295849316, 0.04090522239512089, -0.043354834835920716, 0.009550144337282074, -0.06422750032859464, -6.178692152858378e-06, -0.0031711642924225018, -0.016910075591115258, 0.029352666037830814, 0.006156681886784088], [0.20202020202020202, 0.001706226235816788, 0.07074606899222234, -0.08572532012845989, 0.0029603677799324712, -0.029056502954477502, -0.03968115639937342, 0.033315872466825595, -0.01724912865423449, 0.04593701239678767, 0.03717664320276533], [0.30303030303030304, 0.04019186150591789, 0.06307166733981107, -0.1079056085765249, 0.010036955660098833, -0.07626451154558211, -0.027812238532187873, 0.033863599947871144, -0.030336193494615457, 0.02068902115523147, 0.07262732613172251], [0.40404040404040403, 0.05618965203309743, 0.05686178237325264, -0.07245920155264324, 0.02496585312354881, -0.07693954101456914, -0.01781714549654937, 0.04798301473532824, -0.016351042140838677, 0.0026890756111072056, 0.06534449506807613], [0.5050505050505051, 0.09181479219807133, 0.09499124176393471, -0.036405860318113416, -0.006487838239754174, -0.04692236312141079, -0.059240527064589384, 0.08897715619923915, -0.04573110300128188, -0.03705927476247284, 0.055240242912334106], [0.6060606060606061, 0.13332499802109876, 0.09992962499149434, -0.06718132936335025, -0.03703464693469597, -0.0032050677460365995, -0.08555073950313907, 0.04835488914524919, -0.052140914371985016, -0.02961405697392152, 0.09652319895678221], [0.7070707070707071, 0.15650160222243606, 0.13969495168435186, -0.10584959132965929, -0.0837093595118106, 0.03551014966393041, -0.04845234850756059, 0.04848536944498046, -0.08323090307250125, -0.005187551081169368, 0.09940669421997309], [0.8080808080808081, 0.1589865492807072, 0.1821916982455648, -0.13467339773233147, -0.11688657785926858, 0.06809335200108632, -0.008652927378251553, 0.06755567223242998, -0.13138481043510664, -0.00038290089071909075, 0.05900347097191514], [0.9090909090909091, 0.14891548767402765, 0.18044234213810117, -0.1114133857968713, -0.13140071589896726, 0.1159216386342348, -0.01013368240465843, 0.028509105129215527, -0.14633659554008832, -0.0381200380620936, 0.06444068965148395], [1.0101010101010102, 0.16261859795945685, 0.13111871197040323, -0.08261657607056838, -0.12977314134998094, 0.14967719620741016, -0.011188652733569483, 0.007841862793785823, -0.15471265443666474, -0.05362008723527057, 0.1041708100075958], [1.1111111111111112, 0.17860205120583003, 0.12355946456048855, -0.07522675054078042, -0.12907331048586598, 0.10507124988068292, -0.03443291756386585, 0.04143335309230774, -0.15146580830964282, -0.04802627751901459, 0.06241179645175536], [1.2121212121212122, 0.1319577493387877, 0.1314352149178679, -0.09778685864573176, -0.17479177735700077, 0.11866282638709602, -0.06595133015475815, 0.07843289937451482, -0.1387209732178574, -0.004718587692638138, 0.051857774311640056], [1.3131313131313131, 0.0844389474007457, 0.15789810058264492, -0.1320682544185418, -0.15778497484696355, 0.07078598313203244, -0.03571816467780428, 0.04203313684980875, -0.14266724959994329, 0.021603505654336948, 0.022256980034056146], [1.4141414141414141, 0.04459123241286643, 0.15193767202732808, -0.08337919460177931, -0.19450252425666154, 0.06909612996028226, -0.016750780121222057, 0.035878614980084475, -0.18659109558219364, -0.00932383992172741, 0.013114787496014552], [1.5151515151515151, 0.08742132145111622, 0.13422326536891, -0.11073221378646549, -0.15380961068332177, 0.10989055707535432, 0.023478110625415115, -0.01341969271995054, -0.1584799343692039, 4.051979567884674e-05, -0.012960062268476277], [1.6161616161616161, 0.0736983319685471, 0.12671618876073057, -0.0869811454657599, -0.14912298093323337, 0.13362466106348264, -0.0013759951515323401, 0.01368207775956629, -0.17655759399087875, -0.0029359849255892784, 0.001977767316141547], [1.7171717171717171, 0.10943810015135616, 0.146216433579349, -0.09820531950175024, -0.10834188944825919, 0.09185820618205313, 0.03810244028024743, -0.008388755312991793, -0.2172681581992612, -0.035447542328531506, -0.018997688626449002], [1.8181818181818181, 0.11756027529817764, 0.12933839531490815, -0.06819091801962703, -0.11200313109723106, 0.09682590571234966, 0.033984718939474724, 0.035998346314366686, -0.20527505055144646, -0.06382108793057312, 0.023141416959748848], [1.9191919191919191, 0.1559347181056656, 0.15817862303144797, -0.10038204999516892, -0.07765201653382012, 0.1317103954699735, 0.057603864624613865, -0.005697557954678606, -0.24823488144329336, -0.08300630879986062, 0.027519733182005963], [2.0202020202020203, 0.18459958949242142, 0.16904960585156908, -0.12299723685884585, -0.0836024252957395, 0.10849900922641618, 0.09989590191324982, 0.02777475613024468, -0.20271121421594349, -0.04034976681704794, 0.07713995721860017], [2.121212121212121, 0.14970236377454244, 0.20313130545355265, -0.16660629447845443, -0.07595344311820725, 0.15250229769932666, 0.05412309071327349, -0.017890862690098125, -0.23985159654332716, -0.08656017553164702, 0.067205528850281], [2.2222222222222223, 0.11044760141931648, 0.16884306959820125, -0.13873933978372152, -0.06169841128878781, 0.19082466949483684, 0.09397057068187756, -0.008850537082420245, -0.22093412305076449, -0.0901559590414821, 0.03624494228144913], [2.323232323232323, 0.1303900986868879, 0.13219374256822203, -0.12791680035103062, -0.10832690795420133, 0.18598552376513275, 0.08097020811082063, -0.03967278686393678, -0.19297100465507724, -0.09027113489029367, 0.003983241690989091], [2.4242424242424243, 0.08867420903265975, 0.15661297436166088, -0.13876628083086756, -0.1350443013882044, 0.1768531418003166, 0.08382772877349598, -0.018954858687961068, -0.16994612928361244, -0.127408560066511, 0.04774921366728242], [2.525252525252525, 0.10950378812294694, 0.10719341258330384, -0.17479195227507544, -0.1550937423663601, 0.1670077893285469, 0.08271210828803073, -0.0031889410673252606, -0.1374575703190142, -0.16434535947665768, 0.0875600229947202], [2.6262626262626263, 0.09525501300816866, 0.15277263379151867, -0.15372443959158755, -0.18189458800598055, 0.17472182350422572, 0.099246689318591, 0.0053141900916157305, -0.17625625854529384, -0.13077906602650144, 0.04865275026581731], [2.727272727272727, 0.05223260759425431, 0.19653620112984574, -0.12693667132414446, -0.17274842967140283, 0.14023144652734285, 0.11733151943669892, -0.015417000743674808, -0.1385603750030197, -0.17650914860899014, 0.01563397989086949], [2.8282828282828283, 0.0502750800387325, 0.18146052146445393, -0.14100843270181798, -0.12558976480271644, 0.0947859534109892, 0.1456764616001835, -0.05827584265290412, -0.13975875260645926, -0.14235701495668185, 0.050127577125916825], [2.929292929292929, 0.003427090952446886, 0.19197805039826385, -0.10429236255682009, -0.10515482199053552, 0.12321985197489037, 0.12417636229619503, -0.025853623983289095, -0.12196182132527195, -0.12669603977184274, 0.04918605451695799], [3.0303030303030303, 0.007444708592031723, 0.14273793749123917, -0.1486274195272101, -0.1431102425068246, 0.1652373095913917, 0.11543689992964284, -0.03573324106275962, -0.07930162362097724, -0.08155941712696221, 0.0761063104065195], [3.131313131313131, -0.031153589326259813, 0.14322159645918978, -0.16299729421621176, -0.14038449715459844, 0.2033268288945848, 0.11763921700009525, -0.0297237604645736, -0.04708795952297886, -0.1128526367154909, 0.09729646316342684], [3.2323232323232323, -0.026359130593084625, 0.15200672315814126, -0.1965594568799012, -0.14115654697101604, 0.22814548182367772, 0.14059288436145903, -0.017407006748027608, -0.06528612977452523, -0.10669985946719983, 0.09227499061147086], [3.3333333333333335, 0.00426738484685979, 0.11674562677391323, -0.15969660782924155, -0.13902006819652932, 0.2589930581817555, 0.13342445948747886, -0.04620951534291338, -0.09828196322460278, -0.10219433270522735, 0.11406731338581712], [3.4343434343434343, -0.0320971147419755, 0.11451365723238902, -0.14843930624351123, -0.09404312550087152, 0.2764701652799255, 0.11388668334866786, -0.08173426603161313, -0.09939238725868432, -0.07376873708150211, 0.06504600815056112], [3.5353535353535355, -0.059133268502872385, 0.09245099094168889, -0.17855496030010104, -0.08113941990270426, 0.252253477191925, 0.0651131212711607, -0.037967946731883376, -0.08353514331020181, -0.07683455234585887, 0.07561128139634632], [3.6363636363636362, -0.07988119457169826, 0.054394713226521826, -0.1850029606762342, -0.058641930378235355, 0.25347592012961734, 0.06387032396843821, -0.03147321621932896, -0.05537073974831505, -0.08534335174605766, 0.11059573621119713], [3.7373737373737375, -0.08878066619305917, 0.014796808860952533, -0.13818906710104661, -0.06589427817724174, 0.28170880605586546, 0.10955920917740783, -0.02015679142073698, -0.01877129827683726, -0.07646078662728567, 0.06715058270304192], [3.8383838383838382, -0.047253840178428236, 0.017015835847618285, -0.17280974703737553, -0.05083165125080797, 0.30227151677304026, 0.060293682264223804, 0.0030806532128607143, 0.018117577178944355, -0.07361060927815385, 0.10372126533144078], [3.9393939393939394, -0.04736118243365934, 0.054709699202233675, -0.17030897699961742, -0.10064957273798686, 0.3521683449511173, 0.023624747828705092, 0.022429306357269838, 0.0036858737501068266, -0.06429945776364304, 0.06149641114817942], [4.040404040404041, -0.04827631583920879, 0.06432962232917785, -0.16653192889766033, -0.11017412749414786, 0.33048714206251034, 0.058610373379815235, 0.03060477465435208, 0.044599179571501696, -0.0625218092834249, 0.09861715552375808], [4.141414141414141, -0.06175272203444008, 0.07861574386551301, -0.16679012332128001, -0.14903094842071088, 0.3549322736731319, 0.04731467327244801, -0.0011179566519914433, 0.06246611756643977, -0.026722503179361236, 0.08261907657201392], [4.242424242424242, -0.07147109213590738, 0.036591663103636124, -0.16212297536753614, -0.16662762483528348, 0.39699001884426144, 0.021217344221395366, 0.017785778857058947, 0.05589475831932168, -0.005159675016920096, 0.08533657439378349], [4.343434343434343, -0.06156612365994473, 0.07052361827399914, -0.1286827513915955, -0.2097235764774755, 0.3745001802931858, -0.028650428878116183, 0.027807134538143055, 0.03700606285622121, 0.011322573374108802, 0.12247857705133283], [4.444444444444445, -0.061023573244367586, 0.07766957111828347, -0.0971456068465858, -0.24884377928945917, 0.40678948610299565, -0.03795041605295815, 0.010789132304876672, 0.07235823908202885, 0.020694708209828293, 0.1486506935123779], [4.545454545454545, -0.03670662190748248, 0.12309474509322568, -0.10719234484418688, -0.27435264380121505, 0.41482516349138404, -0.06534556384698419, 0.011044814224921488, 0.07457515260365657, 0.05079870134692701, 0.1459284157762297], [4.646464646464646, -0.041896770273282966, 0.12895794766288107, -0.0628764857918505, -0.23924344030623892, 0.3991025700015684, -0.07327582364612736, 0.0042068657563901135, 0.041771295766105034, 0.005319532340721897, 0.09991773289038056], [4.747474747474747, 0.007736483889979391, 0.14508506869913732, -0.03196651689143532, -0.21925665436416678, 0.4312191176579487, -0.06556675454874346, 0.04321344541808852, 0.001958729628630626, 0.019984073085888975, 0.05458052318582776], [4.848484848484849, -0.010589634939731269, 0.1582901893016959, -0.03381553095601061, -0.2074333140019633, 0.4628590588915211, -0.1041508024736738, 0.052650714729334275, 0.03260816288551628, 0.04251669413508402, 0.046323806368643], [4.94949494949495, -0.006758740029182659, 0.16334558184769918, -0.05648874819389306, -0.24640979889864262, 0.43767933120734903, -0.0969930036851895, 0.07875860888044017, 0.03695891486750056, 0.09135363503012672, 0.016870174963486265], [5.05050505050505, 0.03357991190987265, 0.1865417753415465, -0.08848983899999331, -0.22345842180802689, 0.4039215545454975, -0.1367151029980727, 0.10225730087264484, -0.008291198336339158, 0.1345287986320984, 0.05461224969739902], [5.151515151515151, 0.04407437644705686, 0.1398225446487328, -0.07460839721423956, -0.2511227128145298, 0.44960125178555455, -0.08779233788057954, 0.13131039620154716, -0.026906885067693478, 0.10969308132897909, 0.0762398845772686], [5.252525252525253, 0.05752463106165338, 0.17873811460041866, -0.029121495997670444, -0.22973254651069508, 0.4196702545788887, -0.038766630921022456, 0.12455881380915587, 0.015477974241685354, 0.0785605522140626, 0.07647011755117188], [5.353535353535354, 0.029792250565538275, 0.1635840768992899, -0.059135261666194316, -0.1827474052290238, 0.39451303986074365, -0.06505224288481898, 0.1491332110712792, -0.02310076052172424, 0.08378240235746384, 0.09840756494285369], [5.454545454545454, 0.04437432477147885, 0.1254457539860342, -0.10600360186671678, -0.22439084747283627, 0.38148476893264266, -0.09316754634224639, 0.11477992947708791, -0.01646365000623187, 0.09313346900808982, 0.13742215183802733], [5.555555555555555, 0.00725688473984519, 0.10684672101856142, -0.1364985773812838, -0.21481697899883884, 0.43134138035714414, -0.10905322659769501, 0.12430354513867461, 0.009425453531509274, 0.11327904194745417, 0.1848133479545144], [5.656565656565657, 0.04229807988717309, 0.07388842583545777, -0.16407390326523053, -0.22715470621237144, 0.47574592165325086, -0.06407867458765108, 0.07570558124946919, -0.016151473769357685, 0.1550158460781738, 0.1541833723599108], [5.757575757575758, 0.06414951997487414, 0.041905186283800584, -0.20121864652639987, -0.18619756420763028, 0.48548415092398695, -0.07234237688335893, 0.11558980650643244, -0.060365213748987984, 0.19402627231109346, 0.18514960143370585], [5.858585858585858, 0.036102111042856544, 0.04428119552842414, -0.19184987877186466, -0.16759391405061003, 0.46808547802156747, -0.05445043756728942, 0.1611902517345447, -0.0806960801561219, 0.17325022777625712, 0.21109282488354053], [5.959595959595959, 0.0388619661086264, 0.07697756462420804, -0.21901678664659346, -0.21088251437073038, 0.4469529320443068, -0.03189398488508812, 0.1527600662842265, -0.08835854057752976, 0.19929611265587915, 0.21414559708654973], [6.0606060606060606, 0.044419813943095826, 0.07704932151835248, -0.22162776370563889, -0.18279954948997768, 0.43745179615976626, 0.012057050023569243, 0.14126104382172355, -0.09772771616168296, 0.2480021561170131, 0.17075966035122853], [6.161616161616162, 0.0293919466040587, 0.09628679775760414, -0.21345353132666534, -0.16158790085796682, 0.41295341432153115, -0.02136008871580552, 0.10270799769219524, -0.1226763868019076, 0.22824597255102075, 0.12965556154659846], [6.262626262626262, 0.04564435949439078, 0.05196690178387799, -0.22298741063320052, -0.1146642424886295, 0.4436949339530324, 0.021228469323236444, 0.10962647056960442, -0.09477004317643734, 0.1954711682616546, 0.09237466036194103], [6.363636363636363, 0.03357153001547091, 0.05649738388228317, -0.20652514110255965, -0.07882950990395342, 0.4764777270216095, -0.007838181022085298, 0.08763409061113081, -0.11311310851691121, 0.18134199679889082, 0.0825493114705495], [6.4646464646464645, 0.025469373516761297, 0.09052725656000535, -0.16148678808359251, -0.07318895395087763, 0.4698903534786442, -0.04701383201571503, 0.04785419172648474, -0.12763807853193915, 0.16723427621379736, 0.08067371440030938], [6.565656565656566, 0.03566856473032375, 0.07202529604033389, -0.16920908691196412, -0.09209018969215656, 0.4725715462762856, -0.011278091902739616, 0.02577915297387283, -0.16011133048804213, 0.16063739690836396, 0.08739144181477372], [6.666666666666667, 0.026497867404432746, 0.046630237708531905, -0.1469944992135201, -0.10602816207670562, 0.4940924336755083, 0.029727614455333652, -0.01727422796590388, -0.1782547655935208, 0.1311054693602664, 0.10592021902289572], [6.767676767676767, -0.01573488604527351, 0.022014320951948437, -0.10600938909884594, -0.12163698409322557, 0.4709177406400744, 0.03330217287048575, -0.018173767598123718, -0.18894490821865886, 0.15452738476646866, 0.1506031572182367], [6.8686868686868685, -0.06174684261619595, -0.0024182923039953556, -0.07034863154647328, -0.10881376014035689, 0.47266524076830685, -0.015247530019916862, 0.010936258231087435, -0.1574355278479936, 0.19093208683137358, 0.1334526720122523], [6.96969696969697, -0.07471006911119457, -0.04248178309211134, -0.11326136263389561, -0.13392139512570686, 0.4959093483440511, 0.006413200569938375, -0.011912395740725404, -0.1860760258618414, 0.14214337541612293, 0.11581905645872033], [7.070707070707071, -0.10019767260625975, -0.03359992801155262, -0.09146664596681614, -0.15862047103924704, 0.4808310115785269, -0.04303156503267201, 0.029894484111694528, -0.22289134711340916, 0.15846281761540576, 0.11757734027170894], [7.171717171717171, -0.12269881018888219, 0.003800770523692071, -0.11298989439040688, -0.18566736517552723, 0.4470521373919426, -0.03657861852557179, 0.02987286232007734, -0.21000211208124842, 0.2072996742741345, 0.12085303633523778], [7.2727272727272725, -0.1014972391934251, -0.035096748778937245, -0.07960693297627894, -0.15208033387881087, 0.4548649644391211, -0.05554474836706588, 0.028800932683484423, -0.2405992345859126, 0.18037594385699057, 0.15560564784157527], [7.373737373737374, -0.10958131841579727, -0.023779024709490088, -0.09937792463449195, -0.12132259881713511, 0.46478683418505756, -0.01518104322954688, -0.014038344165179698, -0.2297997841917397, 0.22160772573260698, 0.19846341915151278], [7.474747474747475, -0.1274251700075184, -0.003367152277770638, -0.08494192086180075, -0.10915181659887285, 0.43971836780397344, -0.0014286334729322198, -0.04944794992097491, -0.19157967500447054, 0.22406252663941598, 0.21260827046311204], [7.575757575757575, -0.14964366031600496, 0.009923609236356466, -0.08014198852953221, -0.13738512429451197, 0.42437887456180917, -0.03262934442536983, -0.01569034586193163, -0.15204587438604486, 0.19999964404390969, 0.20317072123107874], [7.6767676767676765, -0.1856109916191953, 0.04287796882330508, -0.06938092492896002, -0.09147110053054353, 0.3774242832103167, -0.03704241693127818, 0.01911766891058029, -0.1606873844011886, 0.20202390208331306, 0.22373694528582524], [7.777777777777778, -0.1734165089259561, 0.08027567183205055, -0.106642942915981, -0.06013042447797571, 0.3338235237049113, -0.016731540979653483, 0.03962409930296523, -0.19251528433599605, 0.2330492802421027, 0.25120656714911366], [7.878787878787879, -0.13754302945065272, 0.06904694142373273, -0.08956825479771836, -0.07772484832358842, 0.3458352372616045, 0.026975186512125857, 0.05001429396709758, -0.14675341990919755, 0.22477846055737993, 0.20954475827102573], [7.979797979797979, -0.1154445702290253, 0.02723191767299997, -0.06589380556944094, -0.08252478222265608, 0.3107609710084065, -0.007525451981151645, 0.045930688630911355, -0.19187241127019297, 0.26713403039478295, 0.1902362598059307], [8.080808080808081, -0.1330924783810021, 0.002020726385286914, -0.023158578343614615, -0.0950129909993226, 0.2895359485709049, -0.022310411951264066, 0.0015094859704258903, -0.152525547121304, 0.3053679631142763, 0.1936642440662487], [8.181818181818182, -0.12358197826610594, 0.015574020844850751, -0.03518627732613972, -0.07211609212762661, 0.28907911641615525, -0.020838801556179766, 0.003680999834726935, -0.13004639625984515, 0.2946701503150657, 0.15778819836957253], [8.282828282828282, -0.09383113317242703, 0.030643651870428397, 0.0010881404916358167, -0.07230242400430192, 0.2472497473992361, -0.005863413183986532, -0.007758464359823352, -0.11014371434069124, 0.2761809648360739, 0.1479798884068512], [8.383838383838384, -0.10349482617756095, 0.031979411440701364, -0.010350715114487239, -0.07192129987853878, 0.2831048953038822, -0.0194050742717551, 0.03902795589514788, -0.07442384327684108, 0.30811764784348444, 0.17786540169357537], [8.484848484848484, -0.06209490242081619, 0.014979877640041068, -0.04058269119397151, -0.025307097849346566, 0.24381901377457915, 0.008711122000173654, 0.07661464910340966, -0.09020166329910108, 0.2817228705841981, 0.1567256027474868], [8.585858585858587, -0.043518423691712646, -0.021429156838581594, -0.029868307621703893, -0.048199937238869534, 0.23041487720491904, 0.01398252984889332, 0.060166526615218596, -0.10178973952826943, 0.2992510829885515, 0.19253973214973263], [8.686868686868687, -0.01762112491587657, -0.020773221453692255, -0.05036615735874637, -0.06609845895216682, 0.240801660792263, 0.04153155038058079, 0.04236436032503353, -0.055450972897371, 0.3157037424532501, 0.17188996034211532], [8.787878787878787, -0.04184399833670781, -0.035052895299125836, -0.05679081627234446, -0.0249383670068481, 0.23665190937100722, 0.008048058975088625, 0.017940057685973673, -0.043202771794092244, 0.27550948787730695, 0.18791449903009613], [8.88888888888889, -0.040828158449785185, -0.06181765765282443, -0.024858763248980634, -0.047278677397478895, 0.2384520830046964, 0.039661233029641633, 0.06254244757536498, -0.08296404617005032, 0.3006221119068058, 0.18727839222943138], [8.98989898989899, 0.004493199239191455, -0.027117411076919028, -0.0313541344735637, -0.028288846878770764, 0.1924393962955479, 0.07368820984098222, 0.10637781429439538, -0.09336413480921292, 0.3373692973935591, 0.18790828504253254], [9.09090909090909, -0.010422416492571035, -0.017666718910315113, -0.05937602291976912, -0.00786540414564419, 0.1562641571847111, 0.06601155002829202, 0.14461255614525714, -0.061740305245456206, 0.375527214290871, 0.17191070229543567], [9.191919191919192, -0.039494115193602825, -0.011424543498349945, -0.08822232547517836, 0.03233886016372133, 0.20346311334231096, 0.04604391145505446, 0.09635790227204241, -0.02783057153504581, 0.3368274740102947, 0.21130261904181422], [9.292929292929292, -0.07929258813690329, -0.040356676295205104, -0.1293509895302487, -0.012571494854045039, 0.16589488523073076, 0.09424610666558159, 0.0992363014011809, -0.05395995538580074, 0.2974914858995095, 0.2298798095139237], [9.393939393939394, -0.029332861821286117, -0.009960771476621173, -0.09936101591901195, 0.031486724725836406, 0.1454438387779336, 0.11835154852973953, 0.08610118163206074, -0.023992665447484043, 0.30171006900005776, 0.19907811974383907], [9.494949494949495, -0.052685801759972034, 0.008034848602598125, -0.07555951260869927, -0.005708023504016134, 0.17883731806800734, 0.07011373093992423, 0.03998700850390885, -0.012739420371661104, 0.3001762287334841, 0.24112715817093477], [9.595959595959595, -0.06964279144264567, 0.035098437765731336, -0.1238767917029678, 0.022387567546562095, 0.1716371963877844, 0.09257896495266021, 0.02484062573114524, -0.028631194167612582, 0.25768137932695867, 0.2610567484922318], [9.696969696969697, -0.08536842250771332, -0.014364682539267752, -0.12780966754190493, 0.05577709148843432, 0.164639764742484, 0.07675615570336677, 0.0030018372377227168, -0.032735478780064664, 0.2580825199168547, 0.25382636768524725], [9.797979797979798, -0.07170286919442263, 0.019449100108443168, -0.11266297257609445, 0.036815671466108854, 0.15520338355847604, 0.04371819296910099, 0.02747056571858382, -0.0041507737310640044, 0.23248258788209922, 0.2892550803157584], [9.8989898989899, -0.10660384838470854, 0.003250794230012316, -0.14108057940889268, 0.06877462416590285, 0.19753006438936263, 0.08203145629756728, 0.019625805026996415, 0.004620084882797406, 0.2093912741430623, 0.3085029251537779], [10.0, -0.10556201201957041, -0.024037542558377006, -0.1677846388924425, 0.058307165965912885, 0.16237421363695437, 0.09484153541073674, 0.055663220667528705, 0.011313760483536387, 0.21586278173134293, 0.30652249387998526]]}, \"id\": \"el18214555277968\"});\n",
" })\n",
" });\n",
"}\n",
"</script>"
],
"metadata": {},
"output_type": "pyout",
"prompt_number": 15,
"text": [
"<IPython.core.display.HTML at 0x110614ed0>"
]
}
],
"prompt_number": 15
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment