{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "laughing-rotation",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "   <div id=\"wSyPQd\"></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"library\">\n",
       "       if(!window.letsPlotCallQueue) {\n",
       "           window.letsPlotCallQueue = [];\n",
       "       }; \n",
       "       window.letsPlotCall = function(f) {\n",
       "           window.letsPlotCallQueue.push(f);\n",
       "       };\n",
       "       (function() {\n",
       "           var script = document.createElement(\"script\");\n",
       "           script.type = \"text/javascript\";\n",
       "           script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.8.1/js-package/distr/lets-plot.min.js\";\n",
       "           script.onload = function() {\n",
       "               window.letsPlotCall = function(f) {f();};\n",
       "               window.letsPlotCallQueue.forEach(function(f) {f();});\n",
       "               window.letsPlotCallQueue = [];\n",
       "               \n",
       "               \n",
       "           };\n",
       "           script.onerror = function(event) {\n",
       "               window.letsPlotCall = function(f) {};\n",
       "               window.letsPlotCallQueue = [];\n",
       "               var div = document.createElement(\"div\");\n",
       "               div.style.color = 'darkred';\n",
       "               div.textContent = 'Error loading Lets-Plot JS';\n",
       "               document.getElementById(\"wSyPQd\").appendChild(div);\n",
       "           };\n",
       "           var e = document.getElementById(\"wSyPQd\");\n",
       "           e.appendChild(script);\n",
       "       })();\n",
       "   </script>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "            <div id=\"kotlin_out_0\"></div>\n",
       "            <script type=\"text/javascript\">\n",
       "                            if(!window.kotlinQueues) {\n",
       "                window.kotlinQueues = {};\n",
       "            }\n",
       "            if(!window.kotlinQueues[\"letsPlotJs\"]) {\n",
       "                var resQueue = [];\n",
       "                window.kotlinQueues[\"letsPlotJs\"] = resQueue;\n",
       "                window[\"call_letsPlotJs\"] = function(f) {\n",
       "                    resQueue.push(f);\n",
       "                }\n",
       "            }\n",
       "            (function (){\n",
       "                var modifiers = [(function(script) {\n",
       "    script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.8.1/js-package/distr/lets-plot.min.js\"\n",
       "    script.type = \"text/javascript\";\n",
       "})];\n",
       "                var e = document.getElementById(\"kotlin_out_0\");\n",
       "                modifiers.forEach(function (gen) {\n",
       "                    var script = document.createElement(\"script\");\n",
       "                    gen(script)\n",
       "                    script.addEventListener(\"load\", function() {\n",
       "                        window[\"call_letsPlotJs\"] = function(f) {f();};\n",
       "                        window.kotlinQueues[\"letsPlotJs\"].forEach(function(f) {f();});\n",
       "                        window.kotlinQueues[\"letsPlotJs\"] = [];\n",
       "                    }, false);\n",
       "                    script.addEventListener(\"error\", function() {\n",
       "                        window[\"call_letsPlotJs\"] = function(f) {};\n",
       "                        window.kotlinQueues[\"letsPlotJs\"] = [];\n",
       "                        var div = document.createElement(\"div\");\n",
       "                        div.style.color = 'darkred';\n",
       "                        div.textContent = 'Error loading resource letsPlotJs';\n",
       "                        document.getElementById(\"kotlin_out_0\").appendChild(div);\n",
       "                    }, false);\n",
       "                    \n",
       "                    e.appendChild(script);\n",
       "                });\n",
       "            })();\n",
       "            </script>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "%useLatestDescriptors\n",
    "%use lets-plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "33f31202",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Lets-Plot Kotlin API v.4.12.0. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.8.1.\n",
       "Outputs: Web (HTML+JS), Kotlin Notebook (Swing), Static SVG (hidden)"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "LetsPlot.getInfo()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "everyday-cheese",
   "metadata": {},
   "outputs": [],
   "source": [
    "val data = mapOf(\n",
    "    \"x\" to listOf(1, 1, 2, 2, 2),\n",
    "    \"y\" to listOf(1, 3, 2, 1, -3),\n",
    "    \"grp\" to listOf(\"a\", \"b\", \"a\", \"b\", \"c\")\n",
    ")\n",
    "\n",
    "val p = letsPlot(data) { x = \"x\"; y = \"y\" } + \n",
    "    geomBar(stat = Stat.identity, color = \"pen\") { fill = \"grp\" }  + \n",
    "    scaleFillBrewer(palette = \"Pastel1\") +\n",
    "    theme(axisLineX = elementBlank(), axisTicks = elementBlank()) + \n",
    "    geomHLine(yintercept = 0, color = \"pen\", size = 0.5)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "exterior-gamma",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "   <div id=\"olo9fn\"></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"library\">\n",
       "       if(!window.letsPlotCallQueue) {\n",
       "           window.letsPlotCallQueue = [];\n",
       "       }; \n",
       "       window.letsPlotCall = function(f) {\n",
       "           window.letsPlotCallQueue.push(f);\n",
       "       };\n",
       "       (function() {\n",
       "           var script = document.createElement(\"script\");\n",
       "           script.type = \"text/javascript\";\n",
       "           script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.8.1/js-package/distr/lets-plot.min.js\";\n",
       "           script.onload = function() {\n",
       "               window.letsPlotCall = function(f) {f();};\n",
       "               window.letsPlotCallQueue.forEach(function(f) {f();});\n",
       "               window.letsPlotCallQueue = [];\n",
       "               \n",
       "               \n",
       "           };\n",
       "           script.onerror = function(event) {\n",
       "               window.letsPlotCall = function(f) {};\n",
       "               window.letsPlotCallQueue = [];\n",
       "               var div = document.createElement(\"div\");\n",
       "               div.style.color = 'darkred';\n",
       "               div.textContent = 'Error loading Lets-Plot JS';\n",
       "               document.getElementById(\"olo9fn\").appendChild(div);\n",
       "           };\n",
       "           var e = document.getElementById(\"olo9fn\");\n",
       "           e.appendChild(script);\n",
       "       })();\n",
       "   </script>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "application/plot+json": {
       "apply_color_scheme": true,
       "output": {
        "figures": [
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "Default"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": "stack",
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         },
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "vjust = 0.0"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": {
             "name": "stack",
             "vjust": 0
            },
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         },
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "vjust = 0.3"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": {
             "name": "stack",
             "vjust": 0.3
            },
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         },
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "vjust = 0.5"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": {
             "name": "stack",
             "vjust": 0.5
            },
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         },
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "vjust = 0.7"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": {
             "name": "stack",
             "vjust": 0.7
            },
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         },
         {
          "data": {
           "grp": [
            "a",
            "b",
            "a",
            "b",
            "c"
           ],
           "x": [
            1,
            1,
            2,
            2,
            2
           ],
           "y": [
            1,
            3,
            2,
            1,
            -3
           ]
          },
          "data_meta": {
           "series_annotations": [
            {
             "column": "x",
             "type": "int"
            },
            {
             "column": "y",
             "type": "int"
            },
            {
             "column": "grp",
             "type": "str"
            }
           ]
          },
          "ggtitle": {
           "text": "vjust = 1.0"
          },
          "kind": "plot",
          "layers": [
           {
            "color": "pen",
            "geom": "bar",
            "mapping": {
             "fill": "grp"
            },
            "position": "stack",
            "stat": "identity"
           },
           {
            "color": "pen",
            "geom": "hline",
            "mapping": {},
            "position": "identity",
            "size": 0.5,
            "stat": "identity",
            "yintercept": 0
           },
           {
            "geom": "label",
            "mapping": {
             "group": "grp",
             "label": "y"
            },
            "position": {
             "name": "stack",
             "vjust": 1
            },
            "stat": "identity"
           }
          ],
          "mapping": {
           "x": "x",
           "y": "y"
          },
          "scales": [
           {
            "aesthetic": "fill",
            "palette": "Pastel1",
            "scale_mapper_kind": "color_brewer"
           }
          ],
          "theme": {
           "axis_line_x": {
            "blank": true
           },
           "axis_ticks": {
            "blank": true
           }
          }
         }
        ],
        "ggsize": {
         "height": 1200,
         "width": 1200
        },
        "kind": "subplots",
        "layout": {
         "align": false,
         "fit": true,
         "name": "grid",
         "ncol": 2,
         "nrow": 3
        }
       },
       "output_type": "lets_plot_spec",
       "swing_enabled": true
      },
      "text/html": [
       "   <div id=\"OJ3aEq\" ></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
       "   \n",
       "   (function() {\n",
       "   // ----------\n",
       "   \n",
       "   const forceImmediateRender = false;\n",
       "   const responsive = false;\n",
       "   \n",
       "   let sizing = {\n",
       "       width_mode: \"MIN\",\n",
       "       height_mode: \"SCALED\",\n",
       "       width: null, \n",
       "       height: null \n",
       "   };\n",
       "   \n",
       "   const preferredWidth = document.body.dataset.letsPlotPreferredWidth;\n",
       "   if (preferredWidth !== undefined) {\n",
       "       sizing = {\n",
       "           width_mode: 'FIXED',\n",
       "           height_mode: 'SCALED',\n",
       "           width: parseFloat(preferredWidth)\n",
       "       };\n",
       "   }\n",
       "   \n",
       "   const containerDiv = document.getElementById(\"OJ3aEq\");\n",
       "   let fig = null;\n",
       "   \n",
       "   function renderPlot() {\n",
       "       if (fig === null) {\n",
       "           const plotSpec = {\n",
       "\"layout\":{\n",
       "\"name\":\"grid\",\n",
       "\"ncol\":2,\n",
       "\"nrow\":3,\n",
       "\"fit\":true,\n",
       "\"align\":false\n",
       "},\n",
       "\"figures\":[{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"Default\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"1\"\n",
       "},{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"vjust = 0.0\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"stack\",\n",
       "\"vjust\":0.0\n",
       "},\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"2\"\n",
       "},{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"vjust = 0.3\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"stack\",\n",
       "\"vjust\":0.3\n",
       "},\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"3\"\n",
       "},{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"vjust = 0.5\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"stack\",\n",
       "\"vjust\":0.5\n",
       "},\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"4\"\n",
       "},{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"vjust = 0.7\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"stack\",\n",
       "\"vjust\":0.7\n",
       "},\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"5\"\n",
       "},{\n",
       "\"ggtitle\":{\n",
       "\"text\":\"vjust = 1.0\"\n",
       "},\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"stack\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"stack\",\n",
       "\"vjust\":1.0\n",
       "},\n",
       "\"geom\":\"label\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"6\"\n",
       "}],\n",
       "\"ggsize\":{\n",
       "\"width\":1200.0,\n",
       "\"height\":1200.0\n",
       "},\n",
       "\"kind\":\"subplots\"\n",
       "};\n",
       "           window.letsPlotCall(function() { fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, containerDiv, sizing); });\n",
       "       } else {\n",
       "           fig.updateView({});\n",
       "       }\n",
       "   }\n",
       "   \n",
       "   const renderImmediately = \n",
       "       forceImmediateRender || (\n",
       "           sizing.width_mode === 'FIXED' && \n",
       "           (sizing.height_mode === 'FIXED' || sizing.height_mode === 'SCALED')\n",
       "       );\n",
       "   \n",
       "   if (renderImmediately) {\n",
       "       renderPlot();\n",
       "   }\n",
       "   \n",
       "   if (!renderImmediately || responsive) {\n",
       "       // Set up observer for initial sizing or continuous monitoring\n",
       "       var observer = new ResizeObserver(function(entries) {\n",
       "           for (let entry of entries) {\n",
       "               if (entry.contentBoxSize && \n",
       "                   entry.contentBoxSize[0].inlineSize > 0) {\n",
       "                   if (!responsive && observer) {\n",
       "                       observer.disconnect();\n",
       "                       observer = null;\n",
       "                   }\n",
       "                   renderPlot();\n",
       "                   if (!responsive) {\n",
       "                       break;\n",
       "                   }\n",
       "               }\n",
       "           }\n",
       "       });\n",
       "       \n",
       "       observer.observe(containerDiv);\n",
       "   }\n",
       "   \n",
       "   // ----------\n",
       "   })();\n",
       "   \n",
       "   </script>                <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=fb98862f-0b74-43c6-b206-616f584178eb width=\"100%\" height=\"100%\" style=\"max-width: 1200.0px; max-height: 1200.0px;\" viewBox=\"0 0 1200.0 1200.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
       "  <style type=\"text/css\">\n",
       "  .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#ppDKlJu .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#ppDKlJu .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       ".axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       ".axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#ppDKlJu .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       ".tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       ".tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       ".tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "  </style>\n",
       "  <g id=\"ppDKlJu\">\n",
       "    <rect x=\"0.0\" y=\"0.0\" height=\"1200.0\" width=\"1200.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\">\n",
       "    </rect>\n",
       "  </g>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"6.0\" y=\"6.0\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#pQ5s54k .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#pQ5s54k .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dnyB1L8 .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dnyB1L8 .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pQ5s54k .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dnyB1L8 .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dnyB1L8 .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dnyB1L8 .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"pQ5s54k\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#cuHbKrT)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 145.89177489177487 ) \">\n",
       "                  <path d=\"M135.56925631326928 156.39177489177487 C135.56925631326928 156.39177489177487 138.71925631326928 156.39177489177487 138.71925631326928 153.24177489177487 L138.71925631326928 138.54177489177488 C138.71925631326928 138.54177489177488 138.71925631326928 135.39177489177487 135.56925631326928 135.39177489177487 L126.27475813045739 135.39177489177487 C126.27475813045739 135.39177489177487 123.12475813045738 135.39177489177487 123.12475813045738 138.54177489177488 L123.12475813045738 153.24177489177487 C123.12475813045738 153.24177489177487 123.12475813045738 156.39177489177487 126.27475813045739 156.39177489177487 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 150.09177489177486 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 15.242424242424221 ) \">\n",
       "                  <path d=\"M135.56925631326928 25.74242424242422 C135.56925631326928 25.74242424242422 138.71925631326928 25.74242424242422 138.71925631326928 22.592424242424222 L138.71925631326928 7.892424242424221 C138.71925631326928 7.892424242424221 138.71925631326928 4.742424242424221 135.56925631326928 4.742424242424221 L126.27475813045739 4.742424242424221 C126.27475813045739 4.742424242424221 123.12475813045738 4.742424242424221 123.12475813045738 7.892424242424221 L123.12475813045738 22.592424242424222 C123.12475813045738 22.592424242424222 123.12475813045738 25.74242424242422 126.27475813045739 25.74242424242422 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 19.442424242424224 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 102.34199134199132 ) \">\n",
       "                  <path d=\"M375.7931227754039 112.84199134199132 C375.7931227754039 112.84199134199132 378.9431227754039 112.84199134199132 378.9431227754039 109.69199134199131 L378.9431227754039 94.99199134199132 C378.9431227754039 94.99199134199132 378.9431227754039 91.84199134199132 375.7931227754039 91.84199134199132 L366.49862459259197 91.84199134199132 C366.49862459259197 91.84199134199132 363.348624592592 91.84199134199132 363.348624592592 94.99199134199132 L363.348624592592 109.69199134199131 C363.348624592592 109.69199134199131 363.348624592592 112.84199134199132 366.49862459259197 112.84199134199132 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 106.54199134199132 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 58.79220779220776 ) \">\n",
       "                  <path d=\"M375.7931227754039 69.29220779220776 C375.7931227754039 69.29220779220776 378.9431227754039 69.29220779220776 378.9431227754039 66.14220779220776 L378.9431227754039 51.44220779220776 C378.9431227754039 51.44220779220776 378.9431227754039 48.29220779220776 375.7931227754039 48.29220779220776 L366.49862459259197 48.29220779220776 C366.49862459259197 48.29220779220776 363.348624592592 48.29220779220776 363.348624592592 51.44220779220776 L363.348624592592 66.14220779220776 C363.348624592592 66.14220779220776 363.348624592592 69.29220779220776 366.49862459259197 69.29220779220776 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 62.992207792207765 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 320.09090909090907 ) \">\n",
       "                  <path d=\"M380.0903718668099 330.59090909090907 C380.0903718668099 330.59090909090907 383.2403718668099 330.59090909090907 383.2403718668099 327.4409090909091 L383.2403718668099 312.74090909090904 C383.2403718668099 312.74090909090904 383.2403718668099 309.59090909090907 380.0903718668099 309.59090909090907 L362.201375501186 309.59090909090907 C362.201375501186 309.59090909090907 359.05137550118604 309.59090909090907 359.05137550118604 312.74090909090904 L359.05137550118604 327.4409090909091 C359.05137550118604 327.4409090909091 359.05137550118604 330.59090909090907 362.201375501186 330.59090909090907 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 324.29090909090905 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"cqjRgZr\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cBkC2lH\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cuHbKrT\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>Default</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"dnyB1L8\">\n",
       "    </g>\n",
       "  </svg>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"602.0\" y=\"6.0\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#pt2yfh0 .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dRBw5Rr .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dRBw5Rr .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pt2yfh0 .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dRBw5Rr .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dRBw5Rr .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dRBw5Rr .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"pt2yfh0\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#c5Hl7a7)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 189.4415584415584 ) \">\n",
       "                  <path d=\"M135.56925631326928 199.9415584415584 C135.56925631326928 199.9415584415584 138.71925631326928 199.9415584415584 138.71925631326928 196.7915584415584 L138.71925631326928 182.09155844155842 C138.71925631326928 182.09155844155842 138.71925631326928 178.9415584415584 135.56925631326928 178.9415584415584 L126.27475813045739 178.9415584415584 C126.27475813045739 178.9415584415584 123.12475813045738 178.9415584415584 123.12475813045738 182.09155844155842 L123.12475813045738 196.7915584415584 C123.12475813045738 196.7915584415584 123.12475813045738 199.9415584415584 126.27475813045739 199.9415584415584 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 193.6415584415584 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 145.89177489177487 ) \">\n",
       "                  <path d=\"M135.56925631326928 156.39177489177487 C135.56925631326928 156.39177489177487 138.71925631326928 156.39177489177487 138.71925631326928 153.24177489177487 L138.71925631326928 138.54177489177488 C138.71925631326928 138.54177489177488 138.71925631326928 135.39177489177487 135.56925631326928 135.39177489177487 L126.27475813045739 135.39177489177487 C126.27475813045739 135.39177489177487 123.12475813045738 135.39177489177487 123.12475813045738 138.54177489177488 L123.12475813045738 153.24177489177487 C123.12475813045738 153.24177489177487 123.12475813045738 156.39177489177487 126.27475813045739 156.39177489177487 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 150.09177489177486 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 189.4415584415584 ) \">\n",
       "                  <path d=\"M375.7931227754039 199.9415584415584 C375.7931227754039 199.9415584415584 378.9431227754039 199.9415584415584 378.9431227754039 196.7915584415584 L378.9431227754039 182.09155844155842 C378.9431227754039 182.09155844155842 378.9431227754039 178.9415584415584 375.7931227754039 178.9415584415584 L366.49862459259197 178.9415584415584 C366.49862459259197 178.9415584415584 363.348624592592 178.9415584415584 363.348624592592 182.09155844155842 L363.348624592592 196.7915584415584 C363.348624592592 196.7915584415584 363.348624592592 199.9415584415584 366.49862459259197 199.9415584415584 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 193.6415584415584 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 102.34199134199132 ) \">\n",
       "                  <path d=\"M375.7931227754039 112.84199134199132 C375.7931227754039 112.84199134199132 378.9431227754039 112.84199134199132 378.9431227754039 109.69199134199131 L378.9431227754039 94.99199134199132 C378.9431227754039 94.99199134199132 378.9431227754039 91.84199134199132 375.7931227754039 91.84199134199132 L366.49862459259197 91.84199134199132 C366.49862459259197 91.84199134199132 363.348624592592 91.84199134199132 363.348624592592 94.99199134199132 L363.348624592592 109.69199134199131 C363.348624592592 109.69199134199131 363.348624592592 112.84199134199132 366.49862459259197 112.84199134199132 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 106.54199134199132 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 189.4415584415584 ) \">\n",
       "                  <path d=\"M380.0903718668099 199.9415584415584 C380.0903718668099 199.9415584415584 383.2403718668099 199.9415584415584 383.2403718668099 196.7915584415584 L383.2403718668099 182.09155844155842 C383.2403718668099 182.09155844155842 383.2403718668099 178.9415584415584 380.0903718668099 178.9415584415584 L362.201375501186 178.9415584415584 C362.201375501186 178.9415584415584 359.05137550118604 178.9415584415584 359.05137550118604 182.09155844155842 L359.05137550118604 196.7915584415584 C359.05137550118604 196.7915584415584 359.05137550118604 199.9415584415584 362.201375501186 199.9415584415584 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 193.6415584415584 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"cOrOTMe\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cnAvpZJ\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"c5Hl7a7\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>vjust = 0.0</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"dRBw5Rr\">\n",
       "    </g>\n",
       "  </svg>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"6.0\" y=\"403.3333333333333\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#pEEYAMw .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#pEEYAMw .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#d3MZR0T .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#d3MZR0T .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pEEYAMw .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#d3MZR0T .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#d3MZR0T .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#d3MZR0T .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"pEEYAMw\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#cnCcUVD)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 176.37662337662334 ) \">\n",
       "                  <path d=\"M135.56925631326928 186.87662337662334 C135.56925631326928 186.87662337662334 138.71925631326928 186.87662337662334 138.71925631326928 183.72662337662334 L138.71925631326928 169.02662337662335 C138.71925631326928 169.02662337662335 138.71925631326928 165.87662337662334 135.56925631326928 165.87662337662334 L126.27475813045739 165.87662337662334 C126.27475813045739 165.87662337662334 123.12475813045738 165.87662337662334 123.12475813045738 169.02662337662335 L123.12475813045738 183.72662337662334 C123.12475813045738 183.72662337662334 123.12475813045738 186.87662337662334 126.27475813045739 186.87662337662334 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 180.57662337662333 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 106.69696969696966 ) \">\n",
       "                  <path d=\"M135.56925631326928 117.19696969696966 C135.56925631326928 117.19696969696966 138.71925631326928 117.19696969696966 138.71925631326928 114.04696969696965 L138.71925631326928 99.34696969696967 C138.71925631326928 99.34696969696967 138.71925631326928 96.19696969696966 135.56925631326928 96.19696969696966 L126.27475813045739 96.19696969696966 C126.27475813045739 96.19696969696966 123.12475813045738 96.19696969696966 123.12475813045738 99.34696969696967 L123.12475813045738 114.04696969696965 C123.12475813045738 114.04696969696965 123.12475813045738 117.19696969696966 126.27475813045739 117.19696969696966 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 110.89696969696966 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 163.31168831168827 ) \">\n",
       "                  <path d=\"M375.7931227754039 173.81168831168827 C375.7931227754039 173.81168831168827 378.9431227754039 173.81168831168827 378.9431227754039 170.66168831168827 L378.9431227754039 155.96168831168828 C378.9431227754039 155.96168831168828 378.9431227754039 152.81168831168827 375.7931227754039 152.81168831168827 L366.49862459259197 152.81168831168827 C366.49862459259197 152.81168831168827 363.348624592592 152.81168831168827 363.348624592592 155.96168831168828 L363.348624592592 170.66168831168827 C363.348624592592 170.66168831168827 363.348624592592 173.81168831168827 366.49862459259197 173.81168831168827 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 167.51168831168826 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 89.27705627705626 ) \">\n",
       "                  <path d=\"M375.7931227754039 99.77705627705626 C375.7931227754039 99.77705627705626 378.9431227754039 99.77705627705626 378.9431227754039 96.62705627705625 L378.9431227754039 81.92705627705627 C378.9431227754039 81.92705627705627 378.9431227754039 78.77705627705626 375.7931227754039 78.77705627705626 L366.49862459259197 78.77705627705626 C366.49862459259197 78.77705627705626 363.348624592592 78.77705627705626 363.348624592592 81.92705627705627 L363.348624592592 96.62705627705625 C363.348624592592 96.62705627705625 363.348624592592 99.77705627705626 366.49862459259197 99.77705627705626 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 93.47705627705626 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 228.63636363636363 ) \">\n",
       "                  <path d=\"M380.0903718668099 239.13636363636363 C380.0903718668099 239.13636363636363 383.2403718668099 239.13636363636363 383.2403718668099 235.98636363636362 L383.2403718668099 221.28636363636363 C383.2403718668099 221.28636363636363 383.2403718668099 218.13636363636363 380.0903718668099 218.13636363636363 L362.201375501186 218.13636363636363 C362.201375501186 218.13636363636363 359.05137550118604 218.13636363636363 359.05137550118604 221.28636363636363 L359.05137550118604 235.98636363636362 C359.05137550118604 235.98636363636362 359.05137550118604 239.13636363636363 362.201375501186 239.13636363636363 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 232.83636363636361 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"ceDIYFd\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cSHUvIu\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cnCcUVD\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>vjust = 0.3</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"d3MZR0T\">\n",
       "    </g>\n",
       "  </svg>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"602.0\" y=\"403.3333333333333\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#pTRjfPn .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#pTRjfPn .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dAr6kG0 .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dAr6kG0 .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pTRjfPn .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dAr6kG0 .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dAr6kG0 .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dAr6kG0 .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"pTRjfPn\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#cCioJRW)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 167.66666666666663 ) \">\n",
       "                  <path d=\"M135.56925631326928 178.16666666666663 C135.56925631326928 178.16666666666663 138.71925631326928 178.16666666666663 138.71925631326928 175.01666666666662 L138.71925631326928 160.31666666666663 C138.71925631326928 160.31666666666663 138.71925631326928 157.16666666666663 135.56925631326928 157.16666666666663 L126.27475813045739 157.16666666666663 C126.27475813045739 157.16666666666663 123.12475813045738 157.16666666666663 123.12475813045738 160.31666666666663 L123.12475813045738 175.01666666666662 C123.12475813045738 175.01666666666662 123.12475813045738 178.16666666666663 126.27475813045739 178.16666666666663 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 171.86666666666662 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 80.56709956709955 ) \">\n",
       "                  <path d=\"M135.56925631326928 91.06709956709955 C135.56925631326928 91.06709956709955 138.71925631326928 91.06709956709955 138.71925631326928 87.91709956709954 L138.71925631326928 73.21709956709955 C138.71925631326928 73.21709956709955 138.71925631326928 70.06709956709955 135.56925631326928 70.06709956709955 L126.27475813045739 70.06709956709955 C126.27475813045739 70.06709956709955 123.12475813045738 70.06709956709955 123.12475813045738 73.21709956709955 L123.12475813045738 87.91709956709954 C123.12475813045738 87.91709956709954 123.12475813045738 91.06709956709955 126.27475813045739 91.06709956709955 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 84.76709956709955 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 145.89177489177487 ) \">\n",
       "                  <path d=\"M375.7931227754039 156.39177489177487 C375.7931227754039 156.39177489177487 378.9431227754039 156.39177489177487 378.9431227754039 153.24177489177487 L378.9431227754039 138.54177489177488 C378.9431227754039 138.54177489177488 378.9431227754039 135.39177489177487 375.7931227754039 135.39177489177487 L366.49862459259197 135.39177489177487 C366.49862459259197 135.39177489177487 363.348624592592 135.39177489177487 363.348624592592 138.54177489177488 L363.348624592592 153.24177489177487 C363.348624592592 153.24177489177487 363.348624592592 156.39177489177487 366.49862459259197 156.39177489177487 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 150.09177489177486 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 80.56709956709955 ) \">\n",
       "                  <path d=\"M375.7931227754039 91.06709956709955 C375.7931227754039 91.06709956709955 378.9431227754039 91.06709956709955 378.9431227754039 87.91709956709954 L378.9431227754039 73.21709956709955 C378.9431227754039 73.21709956709955 378.9431227754039 70.06709956709955 375.7931227754039 70.06709956709955 L366.49862459259197 70.06709956709955 C366.49862459259197 70.06709956709955 363.348624592592 70.06709956709955 363.348624592592 73.21709956709955 L363.348624592592 87.91709956709954 C363.348624592592 87.91709956709954 363.348624592592 91.06709956709955 366.49862459259197 91.06709956709955 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 84.76709956709955 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 254.76623376623374 ) \">\n",
       "                  <path d=\"M380.0903718668099 265.26623376623377 C380.0903718668099 265.26623376623377 383.2403718668099 265.26623376623377 383.2403718668099 262.1162337662338 L383.2403718668099 247.41623376623374 C383.2403718668099 247.41623376623374 383.2403718668099 244.26623376623374 380.0903718668099 244.26623376623374 L362.201375501186 244.26623376623374 C362.201375501186 244.26623376623374 359.05137550118604 244.26623376623374 359.05137550118604 247.41623376623374 L359.05137550118604 262.1162337662338 C359.05137550118604 262.1162337662338 359.05137550118604 265.26623376623377 362.201375501186 265.26623376623377 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 258.96623376623376 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"cEdb2ny\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cl3N8Vq\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cCioJRW\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>vjust = 0.5</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"dAr6kG0\">\n",
       "    </g>\n",
       "  </svg>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"6.0\" y=\"800.6666666666666\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#p0KSxX1 .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dBWyPcQ .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dBWyPcQ .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p0KSxX1 .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dBWyPcQ .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dBWyPcQ .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dBWyPcQ .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"p0KSxX1\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#cnhYPG0)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 158.95670995670994 ) \">\n",
       "                  <path d=\"M135.56925631326928 169.45670995670994 C135.56925631326928 169.45670995670994 138.71925631326928 169.45670995670994 138.71925631326928 166.30670995670994 L138.71925631326928 151.60670995670995 C138.71925631326928 151.60670995670995 138.71925631326928 148.45670995670994 135.56925631326928 148.45670995670994 L126.27475813045739 148.45670995670994 C126.27475813045739 148.45670995670994 123.12475813045738 148.45670995670994 123.12475813045738 151.60670995670995 L123.12475813045738 166.30670995670994 C123.12475813045738 166.30670995670994 123.12475813045738 169.45670995670994 126.27475813045739 169.45670995670994 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 163.15670995670993 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 54.43722943722943 ) \">\n",
       "                  <path d=\"M135.56925631326928 64.93722943722943 C135.56925631326928 64.93722943722943 138.71925631326928 64.93722943722943 138.71925631326928 61.787229437229435 L138.71925631326928 47.08722943722943 C138.71925631326928 47.08722943722943 138.71925631326928 43.93722943722943 135.56925631326928 43.93722943722943 L126.27475813045739 43.93722943722943 C126.27475813045739 43.93722943722943 123.12475813045738 43.93722943722943 123.12475813045738 47.08722943722943 L123.12475813045738 61.787229437229435 C123.12475813045738 61.787229437229435 123.12475813045738 64.93722943722943 126.27475813045739 64.93722943722943 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 58.637229437229436 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 128.47186147186144 ) \">\n",
       "                  <path d=\"M375.7931227754039 138.97186147186144 C375.7931227754039 138.97186147186144 378.9431227754039 138.97186147186144 378.9431227754039 135.82186147186144 L378.9431227754039 121.12186147186145 C378.9431227754039 121.12186147186145 378.9431227754039 117.97186147186144 375.7931227754039 117.97186147186144 L366.49862459259197 117.97186147186144 C366.49862459259197 117.97186147186144 363.348624592592 117.97186147186144 363.348624592592 121.12186147186145 L363.348624592592 135.82186147186144 C363.348624592592 135.82186147186144 363.348624592592 138.97186147186144 366.49862459259197 138.97186147186144 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 132.67186147186143 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 71.85714285714283 ) \">\n",
       "                  <path d=\"M375.7931227754039 82.35714285714283 C375.7931227754039 82.35714285714283 378.9431227754039 82.35714285714283 378.9431227754039 79.20714285714283 L378.9431227754039 64.50714285714284 C378.9431227754039 64.50714285714284 378.9431227754039 61.35714285714283 375.7931227754039 61.35714285714283 L366.49862459259197 61.35714285714283 C366.49862459259197 61.35714285714283 363.348624592592 61.35714285714283 363.348624592592 64.50714285714284 L363.348624592592 79.20714285714283 C363.348624592592 79.20714285714283 363.348624592592 82.35714285714283 366.49862459259197 82.35714285714283 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 76.05714285714284 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 280.89610389610385 ) \">\n",
       "                  <path d=\"M380.0903718668099 291.39610389610385 C380.0903718668099 291.39610389610385 383.2403718668099 291.39610389610385 383.2403718668099 288.2461038961039 L383.2403718668099 273.54610389610383 C383.2403718668099 273.54610389610383 383.2403718668099 270.39610389610385 380.0903718668099 270.39610389610385 L362.201375501186 270.39610389610385 C362.201375501186 270.39610389610385 359.05137550118604 270.39610389610385 359.05137550118604 273.54610389610383 L359.05137550118604 288.2461038961039 C359.05137550118604 288.2461038961039 359.05137550118604 291.39610389610385 362.201375501186 291.39610389610385 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 285.09610389610384 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"c8LGVlZ\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cMGRMOG\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cnhYPG0\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>vjust = 0.7</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"dBWyPcQ\">\n",
       "    </g>\n",
       "  </svg>\n",
       "  <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" width=\"592.0\" height=\"393.3333333333333\" x=\"602.0\" y=\"800.6666666666666\">\n",
       "    <style type=\"text/css\">\n",
       "    .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#pBZPb7j .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#pBZPb7j .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dEBcd1Y .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dEBcd1Y .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#pBZPb7j .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dEBcd1Y .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dEBcd1Y .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dEBcd1Y .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "    </style>\n",
       "    <g id=\"pBZPb7j\">\n",
       "      <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\">\n",
       "      </path>\n",
       "      <g transform=\"translate(21.0 22.0 ) \">\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"10.810073990796056\" y1=\"0.0\" x2=\"10.810073990796056\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"130.92200722186334\" y1=\"0.0\" x2=\"130.92200722186334\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"251.03394045293064\" y1=\"0.0\" x2=\"251.03394045293064\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"371.14587368399793\" y1=\"0.0\" x2=\"371.14587368399793\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"491.2578069150652\" y1=\"0.0\" x2=\"491.2578069150652\" y2=\"335.3333333333333\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"320.09090909090907\" x2=\"502.06788090586133\" y2=\"320.09090909090907\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"276.5411255411255\" x2=\"502.06788090586133\" y2=\"276.5411255411255\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"232.99134199134195\" x2=\"502.06788090586133\" y2=\"232.99134199134195\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"145.89177489177487\" x2=\"502.06788090586133\" y2=\"145.89177489177487\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"102.34199134199132\" x2=\"502.06788090586133\" y2=\"102.34199134199132\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"58.79220779220776\" x2=\"502.06788090586133\" y2=\"58.79220779220776\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "              <line x1=\"0.0\" y1=\"15.242424242424221\" x2=\"502.06788090586133\" y2=\"15.242424242424221\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g clip-path=\"url(#cd541mO)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (502.06788090586133, 335.3333333333333)]\">\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g>\n",
       "              <g>\n",
       "                <rect x=\"263.04513377603735\" y=\"189.4415584415584\" height=\"130.64935064935065\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"58.79220779220776\" height=\"43.549783549783555\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"263.04513377603735\" y=\"102.34199134199132\" height=\"87.0995670995671\" width=\"216.20147981592118\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"15.242424242424221\" height=\"130.64935064935065\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "                <rect x=\"22.82126731390281\" y=\"145.89177489177487\" height=\"43.54978354978354\" width=\"216.2014798159211\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "                </rect>\n",
       "              </g>\n",
       "              <g>\n",
       "                <line x1=\"0.0\" y1=\"189.4415584415584\" x2=\"502.06788090586133\" y2=\"189.4415584415584\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "                </line>\n",
       "              </g>\n",
       "              <g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 145.89177489177487 ) \">\n",
       "                  <path d=\"M135.56925631326928 156.39177489177487 C135.56925631326928 156.39177489177487 138.71925631326928 156.39177489177487 138.71925631326928 153.24177489177487 L138.71925631326928 138.54177489177488 C138.71925631326928 138.54177489177488 138.71925631326928 135.39177489177487 135.56925631326928 135.39177489177487 L126.27475813045739 135.39177489177487 C126.27475813045739 135.39177489177487 123.12475813045738 135.39177489177487 123.12475813045738 138.54177489177488 L123.12475813045738 153.24177489177487 C123.12475813045738 153.24177489177487 123.12475813045738 156.39177489177487 126.27475813045739 156.39177489177487 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 150.09177489177486 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 130.92200722186334 15.242424242424221 ) \">\n",
       "                  <path d=\"M135.56925631326928 25.74242424242422 C135.56925631326928 25.74242424242422 138.71925631326928 25.74242424242422 138.71925631326928 22.592424242424222 L138.71925631326928 7.892424242424221 C138.71925631326928 7.892424242424221 138.71925631326928 4.742424242424221 135.56925631326928 4.742424242424221 L126.27475813045739 4.742424242424221 C126.27475813045739 4.742424242424221 123.12475813045738 4.742424242424221 123.12475813045738 7.892424242424221 L123.12475813045738 22.592424242424222 C123.12475813045738 22.592424242424222 123.12475813045738 25.74242424242422 126.27475813045739 25.74242424242422 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(130.92200722186334 19.442424242424224 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 102.34199134199132 ) \">\n",
       "                  <path d=\"M375.7931227754039 112.84199134199132 C375.7931227754039 112.84199134199132 378.9431227754039 112.84199134199132 378.9431227754039 109.69199134199131 L378.9431227754039 94.99199134199132 C378.9431227754039 94.99199134199132 378.9431227754039 91.84199134199132 375.7931227754039 91.84199134199132 L366.49862459259197 91.84199134199132 C366.49862459259197 91.84199134199132 363.348624592592 91.84199134199132 363.348624592592 94.99199134199132 L363.348624592592 109.69199134199131 C363.348624592592 109.69199134199131 363.348624592592 112.84199134199132 366.49862459259197 112.84199134199132 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 106.54199134199132 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>2</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 58.79220779220776 ) \">\n",
       "                  <path d=\"M375.7931227754039 69.29220779220776 C375.7931227754039 69.29220779220776 378.9431227754039 69.29220779220776 378.9431227754039 66.14220779220776 L378.9431227754039 51.44220779220776 C378.9431227754039 51.44220779220776 378.9431227754039 48.29220779220776 375.7931227754039 48.29220779220776 L366.49862459259197 48.29220779220776 C366.49862459259197 48.29220779220776 363.348624592592 48.29220779220776 363.348624592592 51.44220779220776 L363.348624592592 66.14220779220776 C363.348624592592 66.14220779220776 363.348624592592 69.29220779220776 366.49862459259197 69.29220779220776 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 62.992207792207765 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>1</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "                <g transform=\"rotate(0.0 371.14587368399793 320.09090909090907 ) \">\n",
       "                  <path d=\"M380.0903718668099 330.59090909090907 C380.0903718668099 330.59090909090907 383.2403718668099 330.59090909090907 383.2403718668099 327.4409090909091 L383.2403718668099 312.74090909090904 C383.2403718668099 312.74090909090904 383.2403718668099 309.59090909090907 380.0903718668099 309.59090909090907 L362.201375501186 309.59090909090907 C362.201375501186 309.59090909090907 359.05137550118604 309.59090909090907 359.05137550118604 312.74090909090904 L359.05137550118604 327.4409090909091 C359.05137550118604 327.4409090909091 359.05137550118604 330.59090909090907 362.201375501186 330.59090909090907 Z\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" stroke-width=\"1.0\">\n",
       "                  </path>\n",
       "                  <g transform=\"translate(371.14587368399793 324.29090909090905 ) \">\n",
       "                    <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                      <tspan>-3</tspan>\n",
       "                    </text>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <defs>\n",
       "            <clipPath id=\"cmtlGz1\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cTazbg5\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "          <defs>\n",
       "            <clipPath id=\"cd541mO\">\n",
       "              <rect x=\"17.961210910936405\" y=\"0.0\" width=\"502.06788090586133\" height=\"335.3333333333333\">\n",
       "              </rect>\n",
       "            </clipPath>\n",
       "          </defs>\n",
       "        </g>\n",
       "        <g>\n",
       "          <g transform=\"translate(17.961210910936405 335.3333333333333 ) \">\n",
       "            <g transform=\"translate(10.810073990796056 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>0.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(130.92200722186334 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(251.03394045293064 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>1.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(371.14587368399793 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(491.2578069150652 0.0 ) \">\n",
       "              <g transform=\"translate(0.0 2.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                  <tspan>2.5</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(17.961210910936405 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 320.09090909090907 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 276.5411255411255 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 232.99134199134195 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>-1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 189.4415584415584 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>0</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 145.89177489177487 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>1</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 102.34199134199132 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>2</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 58.79220779220776 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>3</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 15.242424242424221 ) \">\n",
       "              <g transform=\"translate(-2.0 0.0 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                  <tspan>4</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g transform=\"translate(38.9612109109364 15.8 ) \">\n",
       "        <text style=\"font-size:16.0px;\" y=\"0.0\" class=\"plot-title\">\n",
       "          <tspan>vjust = 1.0</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(15.0 189.66666666666666 ) rotate(-90.0 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "          <tspan>y</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(289.9951513638671 387.3333333333333 ) \">\n",
       "        <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "          <tspan>x</tspan>\n",
       "        </text>\n",
       "      </g>\n",
       "      <g transform=\"translate(544.0290918167977 138.91666666666666 ) \">\n",
       "        <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "        </rect>\n",
       "        <g transform=\"translate(5.0 5.0 ) \">\n",
       "          <g transform=\"translate(0.0 12.0 ) \">\n",
       "            <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "              <tspan>grp</tspan>\n",
       "            </text>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 22.5 ) \">\n",
       "            <g transform=\"\">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>a</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 23.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>b</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(0.0 46.0 ) \">\n",
       "              <g>\n",
       "                <g transform=\"translate(1.0 1.0 ) \">\n",
       "                  <g>\n",
       "                    <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                    </rect>\n",
       "                  </g>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "                <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                  <tspan>c</tspan>\n",
       "                </text>\n",
       "              </g>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 393.3333333333333 L592.0 393.3333333333333 L592.0 0.0 Z\" pointer-events=\"none\">\n",
       "      </path>\n",
       "    </g>\n",
       "    <g id=\"dEBcd1Y\">\n",
       "    </g>\n",
       "  </svg>\n",
       "</svg>\n",
       "                <script>document.getElementById(\"fb98862f-0b74-43c6-b206-616f584178eb\").style.display = \"none\";</script>"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "val w = 600\n",
    "val h = 400\n",
    "\n",
    "gggrid(listOf(\n",
    "    p + geomLabel(position = positionStack()) { label = \"y\"; group = \"grp\" } + ggtitle(\"Default\"),\n",
    "    p + geomLabel(position = positionStack(0.0)) { label = \"y\"; group = \"grp\" } + ggtitle(\"vjust = 0.0\"),\n",
    "    p + geomLabel(position = positionStack(0.3)) { label = \"y\"; group = \"grp\" } + ggtitle(\"vjust = 0.3\"),\n",
    "    p + geomLabel(position = positionStack(0.5)) { label = \"y\"; group = \"grp\" } + ggtitle(\"vjust = 0.5\"),\n",
    "    p + geomLabel(position = positionStack(0.7)) { label = \"y\"; group = \"grp\" } + ggtitle(\"vjust = 0.7\"),\n",
    "    p + geomLabel(position = positionStack(1.0)) { label = \"y\"; group = \"grp\" } + ggtitle(\"vjust = 1.0\")\n",
    "), ncol = 2) + ggsize(2 * w, 3 * h)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "injured-exchange",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "application/plot+json": {
       "apply_color_scheme": true,
       "output": {
        "data": {
         "grp": [
          "a",
          "b",
          "a",
          "b",
          "c"
         ],
         "x": [
          1,
          1,
          2,
          2,
          2
         ],
         "y": [
          1,
          3,
          2,
          1,
          -3
         ]
        },
        "data_meta": {
         "series_annotations": [
          {
           "column": "x",
           "type": "int"
          },
          {
           "column": "y",
           "type": "int"
          },
          {
           "column": "grp",
           "type": "str"
          }
         ]
        },
        "kind": "plot",
        "layers": [
         {
          "color": "pen",
          "geom": "bar",
          "mapping": {
           "fill": "grp"
          },
          "position": "fill",
          "stat": "identity"
         },
         {
          "geom": "text",
          "mapping": {
           "group": "grp",
           "label": "y"
          },
          "position": {
           "name": "fill",
           "vjust": 0.5
          },
          "stat": "identity"
         },
         {
          "color": "pen",
          "geom": "hline",
          "mapping": {},
          "position": "identity",
          "size": 0.5,
          "stat": "identity",
          "yintercept": 0
         }
        ],
        "mapping": {
         "x": "x",
         "y": "y"
        },
        "scales": [
         {
          "aesthetic": "fill",
          "palette": "Pastel1",
          "scale_mapper_kind": "color_brewer"
         }
        ],
        "theme": {
         "axis_line_x": {
          "blank": true
         },
         "axis_ticks": {
          "blank": true
         }
        }
       },
       "output_type": "lets_plot_spec",
       "swing_enabled": true
      },
      "text/html": [
       "   <div id=\"6YGWUM\" ></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
       "   \n",
       "   (function() {\n",
       "   // ----------\n",
       "   \n",
       "   const forceImmediateRender = false;\n",
       "   const responsive = false;\n",
       "   \n",
       "   let sizing = {\n",
       "       width_mode: \"MIN\",\n",
       "       height_mode: \"SCALED\",\n",
       "       width: null, \n",
       "       height: null \n",
       "   };\n",
       "   \n",
       "   const preferredWidth = document.body.dataset.letsPlotPreferredWidth;\n",
       "   if (preferredWidth !== undefined) {\n",
       "       sizing = {\n",
       "           width_mode: 'FIXED',\n",
       "           height_mode: 'SCALED',\n",
       "           width: parseFloat(preferredWidth)\n",
       "       };\n",
       "   }\n",
       "   \n",
       "   const containerDiv = document.getElementById(\"6YGWUM\");\n",
       "   let fig = null;\n",
       "   \n",
       "   function renderPlot() {\n",
       "       if (fig === null) {\n",
       "           const plotSpec = {\n",
       "\"mapping\":{\n",
       "\"x\":\"x\",\n",
       "\"y\":\"y\"\n",
       "},\n",
       "\"data\":{\n",
       "\"grp\":[\"a\",\"b\",\"a\",\"b\",\"c\"],\n",
       "\"x\":[1.0,1.0,2.0,2.0,2.0],\n",
       "\"y\":[1.0,3.0,2.0,1.0,-3.0]\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[{\n",
       "\"aesthetic\":\"fill\",\n",
       "\"scale_mapper_kind\":\"color_brewer\",\n",
       "\"palette\":\"Pastel1\"\n",
       "}],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "\"fill\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"color\":\"pen\",\n",
       "\"position\":\"fill\",\n",
       "\"geom\":\"bar\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "\"label\":\"y\",\n",
       "\"group\":\"grp\"\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"position\":{\n",
       "\"name\":\"fill\",\n",
       "\"vjust\":0.5\n",
       "},\n",
       "\"geom\":\"text\",\n",
       "\"data\":{\n",
       "}\n",
       "},{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"yintercept\":0.0,\n",
       "\"color\":\"pen\",\n",
       "\"size\":0.5,\n",
       "\"position\":\"identity\",\n",
       "\"geom\":\"hline\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"axis_ticks\":{\n",
       "\"blank\":true\n",
       "},\n",
       "\"axis_line_x\":{\n",
       "\"blank\":true\n",
       "}\n",
       "},\n",
       "\"data_meta\":{\n",
       "\"series_annotations\":[{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"x\"\n",
       "},{\n",
       "\"type\":\"int\",\n",
       "\"column\":\"y\"\n",
       "},{\n",
       "\"type\":\"str\",\n",
       "\"column\":\"grp\"\n",
       "}]\n",
       "},\n",
       "\"spec_id\":\"13\"\n",
       "};\n",
       "           window.letsPlotCall(function() { fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, containerDiv, sizing); });\n",
       "       } else {\n",
       "           fig.updateView({});\n",
       "       }\n",
       "   }\n",
       "   \n",
       "   const renderImmediately = \n",
       "       forceImmediateRender || (\n",
       "           sizing.width_mode === 'FIXED' && \n",
       "           (sizing.height_mode === 'FIXED' || sizing.height_mode === 'SCALED')\n",
       "       );\n",
       "   \n",
       "   if (renderImmediately) {\n",
       "       renderPlot();\n",
       "   }\n",
       "   \n",
       "   if (!renderImmediately || responsive) {\n",
       "       // Set up observer for initial sizing or continuous monitoring\n",
       "       var observer = new ResizeObserver(function(entries) {\n",
       "           for (let entry of entries) {\n",
       "               if (entry.contentBoxSize && \n",
       "                   entry.contentBoxSize[0].inlineSize > 0) {\n",
       "                   if (!responsive && observer) {\n",
       "                       observer.disconnect();\n",
       "                       observer = null;\n",
       "                   }\n",
       "                   renderPlot();\n",
       "                   if (!responsive) {\n",
       "                       break;\n",
       "                   }\n",
       "               }\n",
       "           }\n",
       "       });\n",
       "       \n",
       "       observer.observe(containerDiv);\n",
       "   }\n",
       "   \n",
       "   // ----------\n",
       "   })();\n",
       "   \n",
       "   </script>                <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=d7f3df06-d572-4792-8201-d3fe170c4ef6 width=\"100%\" height=\"100%\" style=\"max-width: 600.0px; max-height: 400.0px;\" viewBox=\"0 0 600.0 400.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
       "  <style type=\"text/css\">\n",
       "  .plt-container {\n",
       "   font-family: sans-serif;\n",
       "   user-select: none;\n",
       "   -webkit-user-select: none;\n",
       "   -moz-user-select: none;\n",
       "   -ms-user-select: none;\n",
       "}\n",
       "text {\n",
       "   text-rendering: optimizeLegibility;\n",
       "}\n",
       "#p1Ld57A .plot-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 16.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .plot-subtitle {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .plot-caption {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .hyperlink-element {\n",
       "fill: #118ed8;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "\n",
       "}\n",
       "#p1Ld57A .legend-title {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .legend-item {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .axis-title-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .axis-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dGHjmv6 .axis-tooltip-text-x {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .axis-title-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 15.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .axis-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dGHjmv6 .axis-tooltip-text-y {\n",
       "fill: #ffffff;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .facet-strip-text-x {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#p1Ld57A .facet-strip-text-y {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dGHjmv6 .tooltip-text {\n",
       "fill: #474747;\n",
       "font-weight: normal;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dGHjmv6 .tooltip-title {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "#dGHjmv6 .tooltip-label {\n",
       "fill: #474747;\n",
       "font-weight: bold;\n",
       "font-style: normal;\n",
       "font-family: sans-serif;\n",
       "font-size: 13.0px;\n",
       "\n",
       "}\n",
       "\n",
       "  </style>\n",
       "  <g id=\"p1Ld57A\">\n",
       "    <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\">\n",
       "    </path>\n",
       "    <g transform=\"translate(21.0 6.0 ) \">\n",
       "      <g>\n",
       "        <g transform=\"translate(31.015306675749617 0.0 ) \">\n",
       "          <g>\n",
       "            <line x1=\"10.701253747056057\" y1=\"0.0\" x2=\"10.701253747056057\" y2=\"358.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"129.60407315879004\" y1=\"0.0\" x2=\"129.60407315879004\" y2=\"358.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"248.50689257052406\" y1=\"0.0\" x2=\"248.50689257052406\" y2=\"358.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"367.40971198225805\" y1=\"0.0\" x2=\"367.40971198225805\" y2=\"358.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"486.312531393992\" y1=\"0.0\" x2=\"486.312531393992\" y2=\"358.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g transform=\"translate(31.015306675749617 0.0 ) \">\n",
       "          <g>\n",
       "            <line x1=\"0.0\" y1=\"341.72727272727275\" x2=\"497.0137851410481\" y2=\"341.72727272727275\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"0.0\" y1=\"260.3636363636364\" x2=\"497.0137851410481\" y2=\"260.3636363636364\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"0.0\" y1=\"179.0\" x2=\"497.0137851410481\" y2=\"179.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"0.0\" y1=\"97.63636363636364\" x2=\"497.0137851410481\" y2=\"97.63636363636364\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "            <line x1=\"0.0\" y1=\"16.27272727272728\" x2=\"497.0137851410481\" y2=\"16.27272727272728\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
       "            </line>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "      <g clip-path=\"url(#c9RcKzM)\" clip-bounds-jfx=\"[rect (31.015306675749617, 0.0), (497.0137851410481, 358.0)]\">\n",
       "        <g transform=\"translate(31.015306675749617 0.0 ) \">\n",
       "          <g>\n",
       "            <g>\n",
       "              <rect x=\"260.3971745116975\" y=\"179.0\" height=\"162.72727272727275\" width=\"214.02507494112115\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "              </rect>\n",
       "              <rect x=\"260.3971745116975\" y=\"16.27272727272728\" height=\"54.24242424242425\" width=\"214.02507494112115\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "              </rect>\n",
       "              <rect x=\"260.3971745116975\" y=\"70.51515151515153\" height=\"108.48484848484847\" width=\"214.02507494112115\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "              </rect>\n",
       "              <rect x=\"22.59153568822947\" y=\"16.27272727272728\" height=\"122.04545454545453\" width=\"214.02507494112115\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "              </rect>\n",
       "              <rect x=\"22.59153568822947\" y=\"138.3181818181818\" height=\"40.68181818181819\" width=\"214.02507494112115\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
       "              </rect>\n",
       "            </g>\n",
       "            <g>\n",
       "              <g transform=\"rotate(0.0 129.60407315879004 158.6590909090909 ) \">\n",
       "                <g transform=\"translate(129.60407315879004 162.8590909090909 ) \">\n",
       "                  <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                    <tspan>1</tspan>\n",
       "                  </text>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"rotate(0.0 129.60407315879004 77.29545454545455 ) \">\n",
       "                <g transform=\"translate(129.60407315879004 81.49545454545455 ) \">\n",
       "                  <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                    <tspan>3</tspan>\n",
       "                  </text>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"rotate(0.0 367.40971198225805 124.75757575757576 ) \">\n",
       "                <g transform=\"translate(367.40971198225805 128.95757575757577 ) \">\n",
       "                  <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                    <tspan>2</tspan>\n",
       "                  </text>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"rotate(0.0 367.40971198225805 43.393939393939405 ) \">\n",
       "                <g transform=\"translate(367.40971198225805 47.59393939393941 ) \">\n",
       "                  <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                    <tspan>1</tspan>\n",
       "                  </text>\n",
       "                </g>\n",
       "              </g>\n",
       "              <g transform=\"rotate(0.0 367.40971198225805 260.3636363636364 ) \">\n",
       "                <g transform=\"translate(367.40971198225805 264.56363636363636 ) \">\n",
       "                  <text style=\"fill:#474747;font-size:14.0px;font-family:sans-serif;\" y=\"0.0\" fill-opacity=\"1.0\" text-anchor=\"middle\">\n",
       "                    <tspan>-3</tspan>\n",
       "                  </text>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g>\n",
       "              <line x1=\"0.0\" y1=\"179.0\" x2=\"497.0137851410482\" y2=\"179.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"none\" stroke-width=\"1.1\">\n",
       "              </line>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <defs>\n",
       "          <clipPath id=\"chJCQnA\">\n",
       "            <rect x=\"31.015306675749617\" y=\"0.0\" width=\"497.0137851410481\" height=\"358.0\">\n",
       "            </rect>\n",
       "          </clipPath>\n",
       "        </defs>\n",
       "        <defs>\n",
       "          <clipPath id=\"cJG8h6O\">\n",
       "            <rect x=\"31.015306675749617\" y=\"0.0\" width=\"497.0137851410481\" height=\"358.0\">\n",
       "            </rect>\n",
       "          </clipPath>\n",
       "        </defs>\n",
       "        <defs>\n",
       "          <clipPath id=\"c9RcKzM\">\n",
       "            <rect x=\"31.015306675749617\" y=\"0.0\" width=\"497.0137851410481\" height=\"358.0\">\n",
       "            </rect>\n",
       "          </clipPath>\n",
       "        </defs>\n",
       "      </g>\n",
       "      <g>\n",
       "        <g transform=\"translate(31.015306675749617 358.0 ) \">\n",
       "          <g transform=\"translate(10.701253747056057 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 2.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                <tspan>0.5</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(129.60407315879004 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 2.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                <tspan>1</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(248.50689257052406 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 2.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                <tspan>1.5</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(367.40971198225805 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 2.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                <tspan>2</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(486.312531393992 0.0 ) \">\n",
       "            <g transform=\"translate(0.0 2.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
       "                <tspan>2.5</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "        <g transform=\"translate(31.015306675749617 0.0 ) \">\n",
       "          <g transform=\"translate(0.0 341.72727272727275 ) \">\n",
       "            <g transform=\"translate(-2.0 0.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                <tspan>-1</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 260.3636363636364 ) \">\n",
       "            <g transform=\"translate(-2.0 0.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                <tspan>-0.5</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 179.0 ) \">\n",
       "            <g transform=\"translate(-2.0 0.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                <tspan>0</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 97.63636363636364 ) \">\n",
       "            <g transform=\"translate(-2.0 0.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                <tspan>0.5</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 16.27272727272728 ) \">\n",
       "            <g transform=\"translate(-2.0 0.0 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
       "                <tspan>1</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "    </g>\n",
       "    <g transform=\"translate(15.0 185.0 ) rotate(-90.0 ) \">\n",
       "      <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n",
       "        <tspan>y</tspan>\n",
       "      </text>\n",
       "    </g>\n",
       "    <g transform=\"translate(300.52219924627366 394.0 ) \">\n",
       "      <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-x\" text-anchor=\"middle\">\n",
       "        <tspan>x</tspan>\n",
       "      </text>\n",
       "    </g>\n",
       "    <g transform=\"translate(552.0290918167977 134.25 ) \">\n",
       "      <rect x=\"0.0\" y=\"0.0\" height=\"101.5\" width=\"44.970908183202305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\">\n",
       "      </rect>\n",
       "      <g transform=\"translate(5.0 5.0 ) \">\n",
       "        <g transform=\"translate(0.0 12.0 ) \">\n",
       "          <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"legend-title\">\n",
       "            <tspan>grp</tspan>\n",
       "          </text>\n",
       "        </g>\n",
       "        <g transform=\"translate(0.0 22.5 ) \">\n",
       "          <g transform=\"\">\n",
       "            <g>\n",
       "              <g transform=\"translate(1.0 1.0 ) \">\n",
       "                <g>\n",
       "                  <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(251,180,174)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                  </rect>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                <tspan>a</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 23.0 ) \">\n",
       "            <g>\n",
       "              <g transform=\"translate(1.0 1.0 ) \">\n",
       "                <g>\n",
       "                  <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(179,205,227)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                  </rect>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                <tspan>b</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "          <g transform=\"translate(0.0 46.0 ) \">\n",
       "            <g>\n",
       "              <g transform=\"translate(1.0 1.0 ) \">\n",
       "                <g>\n",
       "                  <rect x=\"0.0\" y=\"0.0\" height=\"21.0\" width=\"21.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(204,235,197)\" fill-opacity=\"1.0\" stroke-width=\"1.5\">\n",
       "                  </rect>\n",
       "                </g>\n",
       "              </g>\n",
       "            </g>\n",
       "            <g transform=\"translate(26.9903027277341 11.5 ) \">\n",
       "              <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"legend-item\" dy=\"0.35em\">\n",
       "                <tspan>c</tspan>\n",
       "              </text>\n",
       "            </g>\n",
       "          </g>\n",
       "        </g>\n",
       "      </g>\n",
       "    </g>\n",
       "    <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\" pointer-events=\"none\">\n",
       "    </path>\n",
       "  </g>\n",
       "  <g id=\"dGHjmv6\">\n",
       "  </g>\n",
       "</svg>\n",
       "                <script>document.getElementById(\"d7f3df06-d572-4792-8201-d3fe170c4ef6\").style.display = \"none\";</script>"
      ]
     },
     "execution_count": 5,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "// position = \"fill\"\n",
    "\n",
    "letsPlot(data) { x = \"x\"; y = \"y\" } + \n",
    "    geomBar(stat = Stat.identity, position = positionFill(), color = \"pen\") { fill = \"grp\" }  + \n",
    "    scaleFillBrewer(palette = \"Pastel1\") +\n",
    "    geomText(position = positionFill(0.5)) { label = \"y\"; group = \"grp\" } +\n",
    "    theme(axisLineX = elementBlank(), axisTicks = elementBlank()) + \n",
    "    geomHLine(yintercept = 0, color = \"pen\", size = 0.5)"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Kotlin",
   "language": "kotlin",
   "name": "kotlin"
  },
  "language_info": {
   "codemirror_mode": "text/x-kotlin",
   "file_extension": ".kt",
   "mimetype": "text/x-kotlin",
   "name": "kotlin",
   "nbconvert_exporter": "",
   "pygments_lexer": "kotlin",
   "version": "2.2.20-Beta2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
