source/kotlin_examples/cookbook/gggrid_scale_share.ipynb (7,260 lines of code) (raw):

{ "cells": [ { "cell_type": "markdown", "id": "premium-czech", "metadata": {}, "source": [ "# Sharing X,Y-axis Scale Limits\n", "\n", "Use `sharex`, `sharey` parameters in the `gggrid()` function to control sharing of axis scale limits among plots in grid:\n", "\n", "- \"all\" or `true` - share limits between all subplots\n", "- \"none\" or `false` - do not share limits between subplots\n", "- \"row\" - share limits between subplots in the same row\n", "- \"col\" - share limits between subplots in the same column" ] }, { "cell_type": "code", "execution_count": 1, "id": "figured-silly", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:01.020464Z", "iopub.status.busy": "2025-12-03T16:06:01.018699Z", "iopub.status.idle": "2025-12-03T16:06:03.030645Z", "shell.execute_reply": "2025-12-03T16:06:03.030367Z" } }, "outputs": [ { "data": { "text/html": [ " <div id=\"IbxFcm\"></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(\"IbxFcm\").appendChild(div);\n", " };\n", " var e = document.getElementById(\"IbxFcm\");\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": "unlike-samuel", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.032255Z", "iopub.status.busy": "2025-12-03T16:06:03.031995Z", "iopub.status.idle": "2025-12-03T16:06:03.071656Z", "shell.execute_reply": "2025-12-03T16:06:03.071471Z" } }, "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": "proper-gross", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.073527Z", "iopub.status.busy": "2025-12-03T16:06:03.073249Z", "iopub.status.idle": "2025-12-03T16:06:03.243574Z", "shell.execute_reply": "2025-12-03T16:06:03.243296Z" } }, "outputs": [], "source": [ "import java.util.Random\n", "\n", "val rand = java.util.Random(37)\n", "\n", "val dat1 = mapOf(\n", " \"x\" to List(1000) { rand.nextGaussian() }\n", ")\n", "\n", "val dat2 = mapOf(\n", " \"x\" to List(200) { rand.nextGaussian() }\n", ")" ] }, { "cell_type": "code", "execution_count": 4, "id": "covered-reduction", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.245155Z", "iopub.status.busy": "2025-12-03T16:06:03.244833Z", "iopub.status.idle": "2025-12-03T16:06:03.336382Z", "shell.execute_reply": "2025-12-03T16:06:03.336121Z" } }, "outputs": [], "source": [ "val p1 = letsPlot(dat1) { x = \"x\" } + geomHistogram()\n", "val p2 = letsPlot(dat2) { x = \"x\" } + geomHistogram()" ] }, { "cell_type": "markdown", "id": "ceramic-garbage", "metadata": {}, "source": [ "#### 1. Two Independent Charts in Grid\n" ] }, { "cell_type": "code", "execution_count": 5, "id": "stopped-sixth", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.339041Z", "iopub.status.busy": "2025-12-03T16:06:03.338349Z", "iopub.status.idle": "2025-12-03T16:06:03.624032Z", "shell.execute_reply": "2025-12-03T16:06:03.623912Z" } }, "outputs": [ { "data": { "text/html": [ " <div id=\"mldIiH\"></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(\"mldIiH\").appendChild(div);\n", " };\n", " var e = document.getElementById(\"mldIiH\");\n", " e.appendChild(script);\n", " })();\n", " </script>" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/plot+json": { "apply_color_scheme": true, "output": { "figures": [ { "data": { "x": [ 1.7687943677666822, 0.10628211826095219, 1.7204367528361415, -0.037534100873246996, -0.7556292895100587, -0.9951161662703086, 1.052027068066767, -0.6497562324361997, -0.47969604178646064, 1.3195412359422278, 0.6471885375454148, -0.6145630713451975, 0.21099118887163767, 0.83061591557465, 0.4890950549463388, 1.3037914453654387, 0.9791647128033308, -1.304372469120525, -0.6739853262611326, -0.6302272555314844, -0.06567293517548581, 0.16992439572141083, 0.4985272158114654, 0.3744336799283743, 0.8193988829709237, 2.429780509168998, 0.35327583135456675, 0.34645985018170156, 0.564510581840672, 1.1079917758816, -2.20104878328904, 1.9695418127098692, -0.2364138746138622, -0.9260104971066431, -0.23550283017719809, -0.01921041177944297, -0.8623579647574651, -0.04184743225913421, -0.34086213093508905, 0.6989387291958685, -0.21280602574129706, -1.5229462883897182, -1.114669649931767, -0.7246596018824761, -0.9795078835494803, 0.43048299121850986, 0.5860946664293265, 0.411783051565248, 2.439598419520245, -0.30589367627540626, -0.03625210379296746, -0.01523713036011583, 0.6748592497714744, 0.449083044780863, 0.7510927431339195, -0.209489786045136, -0.7633801278093398, -0.37577099825301746, 0.14629225501397528, -0.03366700906389058, -0.4992531374770084, 0.5161937494021966, 0.5548153186535513, -0.5079465545590672, -1.021287990885576, 1.8600533054767678, -1.3941301234610528, -0.5876750570891159, 0.27922173427881986, -1.1260343908468196, -1.577245894169239, 1.6868507959809638, -0.34315520906864366, 0.8756673838511702, -0.013202904846600071, 0.1663109595197368, 0.25926468816943765, 0.6214371542812759, 0.40713450838998066, 0.05660059883189231, -0.5927007106253308, 0.2144892451035325, 0.6705129011671771, -0.4192229557817511, -0.13399160735362278, -1.5234992785571666, -0.5760061861059607, 2.2972205355496347, 2.162580230059769, 1.0480461096358216, 1.0609063932362777, -1.3878584214688807, 0.6502887453513964, -1.494802096457127, 0.698933409561582, 1.0279802603891166, -0.7139967016700057, -0.7226340957160897, 0.2725587805228503, -0.10652537707272984, -0.7700645448834437, 0.4613209775995895, 0.4558764090361004, 1.2745381647988683, 1.3664038748711067, -0.5964545000969897, 0.8425859802512796, -1.1060675506974833, -0.11636201252429614, -1.130255335904117, 0.14075812150619382, 0.8628566536023579, 1.6070249894350475, 0.5703388732422935, 1.0595189144315256, -1.8499589529892804, 0.9362860024327014, -0.1535770994097404, 2.0405377240487037, 1.0763448029144767, 0.22485134726888026, 1.7007898970425377, -0.28005757238379236, 0.9570609994345478, -0.6185873758407429, -1.2014680459389429, -0.9947057654083926, -0.20067770025217516, 0.2571029176665626, -0.883927351830682, 0.12808741327939197, 0.5992307710873707, 0.12008433098103098, -0.08485212420192703, 0.31237233238563655, 0.24242726591735153, -0.06390427097507555, -1.2761512215831583, 1.4429536418920819, 1.1118445398381875, 0.04105183955117125, 0.4456661177149582, 0.7128363886693093, 1.3421394998417036, 1.4421668576965316, 0.516055009356753, -1.3147258919070557, -1.7788031740809092, -0.3713653427805966, 1.2091311389736596, 0.35425225249854947, 0.6107370879132182, -0.1414589368742329, -0.8857769913086667, 1.6322316964575883, 0.6699997627240689, -0.21740801413146052, -0.6431289330781157, -0.15060313947856438, 1.2255641097483512, -0.26336216578687954, -1.1288246390012904, 0.08564293390175488, 0.1695508442940134, -0.9549143317713982, -0.381899664359382, -0.2697790924907474, 1.1500248968433444, 0.797187566115551, -2.2555386162293702, 1.5271162429033516, -1.4448616414952375, 0.5528442713502834, 0.8665758998228781, 0.047531454194312754, -0.3979461455918577, -0.9196333950121731, 0.7723500421338588, -0.7005620370822323, -0.57814083100412, -0.3958371590421287, -0.378819582767001, 1.2092623243348053, 0.7802751224122251, 0.34213111783684963, 0.061883850451380215, 1.742883074607315, -0.07056892738486359, 1.8711704286853277, 0.5241690429678856, 0.3716901674784058, -1.125930502067472, 0.6342731753445917, 0.9179042710608684, -0.7558901282490996, 0.5333214869552843, -0.8367682885827396, -0.21003644242206773, 0.06430918371432055, -0.7963578622290897, -0.10322234060563841, -0.10729646196266507, 1.3955424790700066, -0.2795516756720527, -0.5949838356584947, -0.17391777208262518, 0.7781778683010006, 0.4838407983407719, -0.2907333002772144, 0.6142059106061174, 0.7096436983664091, -0.4186179449490197, 0.8897525193469439, 0.6755331598619769, -0.6003620457879268, -0.4113401114570434, -0.2067417201249644, 0.0838256625993102, -0.5203097510627356, -0.2601960272156041, -0.8104079314223315, 0.16436395973534848, -1.0663788895473252, 0.1808957134519183, 0.5305625775777306, 1.6829284627055878, -0.5557491767431979, -1.0634321486292087, -1.2666533155069772, 0.32906296025494386, -0.5633267393367979, 0.262974032081511, 0.1232334861376412, 0.8204655556799958, 1.0879394118426926, 0.29841595257271913, -0.9885950409767389, -0.5929506072429108, -0.662398228279716, 0.46830285742092603, -0.9790273486998664, -0.7895347575387687, -0.4917516072015227, -0.08993262666452023, 2.596758541747095, -0.628648848923298, 0.682907578105213, 0.2514053661935212, 0.9820076737786156, -0.5352359198270071, 0.5596172330947177, 0.18958298990899208, 0.5929605884828225, -0.25127027189474943, 1.2320591242109102, -0.024646567090903636, -0.5816988690813153, 0.0844867434164911, 1.3340639025541705, -0.003709199153535868, 0.46927429464352777, 2.9183293813973723, 0.7437205396027897, -0.6358574634101807, 0.5400566126041787, 0.6617015720199636, -0.8754172749422224, 0.25872922450704705, -0.7230102683126051, -0.5172977863752761, -1.1052377041941381, -0.11503518858438899, -0.8859810401206246, 0.7647843417089121, 0.2977995676256951, -0.3668763992569928, -0.36234436143127996, 0.4404508071548277, -0.6944932923483026, 0.8015861094938902, 0.007521073825629, 0.23015007538843069, 0.9908114041217525, 0.5531681245624889, 0.6860044518648638, -0.4560939999214513, -1.482165095663803, -0.6156090453308964, 0.6617221260493498, -1.051582086895677, -1.1909700536307433, -0.6951258158872021, -0.49201389186246913, 0.5240601552175225, 1.4598975106105863, 0.47819134918690737, 0.060417648691056716, 0.21641450744320817, -1.397164062958668, -2.5207387460245303, 0.21049661098308772, 0.44953292924469673, -0.8293406849588575, -0.6674502122548439, -0.49849852185190413, 0.24944981770908597, -1.160232872868664, 1.2916505588770553, 0.7714438084049878, -1.1140124457870084, 0.34182015837346347, 0.3669813662062043, -0.002820215234065526, 1.6812042084067185, -1.866752474241616, 0.8973406703714665, 0.08399261661618622, 0.19277683039008797, 0.7695000777467759, 0.6474230039826419, -0.1023323713132523, -0.4173400762248842, -0.37706761969258373, -0.715289925505138, 0.2244053211859935, -1.611854380941278, -0.8794984875527906, -0.7904687371739758, -1.1680049774312382, 1.788652825082633, -2.2661175849781885, 0.7411582967255195, -0.3468277404861569, 0.8689599643571382, -1.879646919135953, -1.5141328573173538, -0.1858457929582742, 0.6245382840433624, -1.1750710219563483, 0.4281771969367571, 0.6122212268104209, -1.9126648763488732, -0.8159054313718033, 1.1147580162818758, 0.8066584957152039, -0.9262691798221463, -0.6640849676575586, 1.195291706969711, -1.9778285003658291, 0.5032955371468468, -0.9892979916891699, 1.0889515268329102, -0.579270195598099, -1.195131203654272, 1.687320701115782, 0.15360700295645113, -1.097998522861697, -0.06874923792658369, -0.6084846028517787, 1.8377333268641671, 0.6270565214971554, 0.613502020517991, 0.4874657702591926, -2.527198391757681, -1.5825429493833625, -1.042768564765132, -1.748483604834765, -0.15401136442471855, 0.2172442670321591, 0.9123990549337705, -0.045472803365322965, 1.490397051133071, 1.4948161074248465, -1.127991510268807, 1.1944935975691107, 1.2713363151777186, -0.017202013877178252, -0.13360362731757017, 1.0808013503578553, 1.3050685158894921, 0.018111977145865585, 1.219245048977367, -1.1382408824035277, -0.5770634328394819, 1.2778088136336874, 1.3940155696045688, -1.0859707521259725, 0.05725116489287355, 0.5632858581279874, -0.9809740904817519, 0.3158842259801124, -0.2378251362273881, 0.17796330976482383, -0.2458051916960259, 0.2046967109150976, -0.8840205511357346, -0.09909521750374449, -1.70417570352714, 0.851309656835214, 0.7211240841444065, -0.885830780225618, 0.8146116303728623, 0.4567105643188149, -0.8937845981722212, -0.5180043437191163, -0.8949918184734598, -0.45742698798621884, 2.0210092777288655, 1.7407477909200215, -0.2625413121364725, 0.07563509844789362, 0.5563065121842512, -0.07144690099476853, 0.8954061059962835, -2.571989791091301, 0.918544928811703, -1.2850149567885354, 0.13368583741335258, -0.37787515136607297, 0.0030086998478405596, -0.17254346636623943, 1.2108466855693627, -0.664822744931719, 0.07593726768739008, 1.0470533404975868, 1.1287523224718319, -1.5438745860196132, -1.1790340188368345, -2.299672754410145, 1.0198011710870574, -0.019404870584150715, -0.49949110648973993, -0.0589036922935962, 0.6286546779398563, 1.459419051904404, 0.8526953432051373, 0.6661426434983827, -0.5150825884260762, 2.1183980144227808, -0.2458434065980494, 0.10599190141821684, -0.4065058922779037, 0.5916760973376979, -1.9236371555442888, -0.5421684976921096, 1.0518975417720011, 0.21971183881774903, 0.43247090064502264, -0.1502773445675138, 1.526798426072779, 1.8288204899301639, -1.8618349847533102, -2.0919818104035377, -0.7716134224331724, -1.7408998005851453, 2.136876913494888, 0.4559433273643078, 1.3604923410171677, 0.054227328297997174, -1.3808697575138646, -0.3639825311241219, 0.055966007399287365, -2.7292769507436705, 0.7038733389745608, -1.1697702185595809, -1.9417541318343463, 2.0670987527951965, -0.6325495516049673, -0.7157335328391775, -0.9578766343627506, 1.549704176565892, 0.8531932641906019, -0.5349983855138715, -0.9640852042332527, 0.46775067636278184, -2.1389661047922126, -0.6328477512225166, 0.5256091666809566, 0.2864163007458042, 0.6981923485184115, 1.0521704825249567, -0.10938765172918262, -1.784560243504809, -0.7676374065516406, -1.0373745417933615, -0.2706521248876184, 0.33527096803866147, 0.047286619643391106, 0.23541666105027348, 1.33452807848067, -1.89730026523029, -1.8425563689254174, 0.43845185617349924, 0.0331278967321578, 0.9831928734996545, 0.33521750631797204, 1.3731423233050832, 2.2202381834564187, -0.18323803356208052, 0.012179045892745382, 0.28049446746718826, 0.9004372155345585, -0.5713205967738314, -0.5198042725869185, 0.7989302303403246, -0.6667354000595791, 0.15625402187843146, -2.1208179015850295, -1.5223687842178768, -1.8033523920571315, -0.7627821714513905, 0.6089899673423871, -0.5347783330106071, 0.4368145318960496, 1.4673573622646428, -0.9817834551657011, -0.5832679124737555, -1.3020107962275416, 0.7377710936243188, 2.197811295701506, -2.430639860337569, 1.6796336472932694, -0.010054855207307796, 0.7519682599658991, -0.8876996364251732, -0.3023325288016984, -0.5272719502734191, 0.9779065704338524, -0.08602215165207698, -0.09255129981596599, 1.6295590919091514, -0.9920202273840795, -1.7520549855245477, -0.4021432935804096, -1.263441418110046, 0.7258723981333883, 0.5533275687777933, -0.2901886511501614, -0.4344583897078483, -1.3565804587844976, -2.562617231127234, -1.3235529005802005, 0.0587485765260092, 0.10230217784666464, 0.9094120732184552, 0.2578641267613546, -0.5589508150866048, 0.3253269549992064, 0.11626097303683874, 0.9704212482203466, -1.3951388200697916, 1.419142118729542, 0.6488514459953479, 0.7617982417210711, 1.0036023898475461, 0.12564467420270892, 0.9535184322259238, -0.22688228907356736, 0.15341374258410073, 0.06420769548658052, -0.6151873801579946, 0.60094173160055, 0.1868026706084533, 1.068306057193773, -0.6012386775611135, 0.012632812086998069, -1.6216715545947054, 0.238153072030393, -0.33459420411498836, 0.30348074420805554, -0.05922287072652768, -0.022563421676623754, 0.32207622578054684, -0.03007718522617802, -0.39366170620553265, 0.9071577365162239, 0.40637035377753544, 0.4263610805969633, 0.1918003932548992, 0.6371439538289745, -0.673627091429265, 0.6774877704945061, 0.8001437193782343, 0.8194599272420812, -0.48288943218728725, 0.7906730819215302, 0.8720606717064744, 1.3674043748409335, -0.17116634630984354, -1.154450954935009, 0.4007262308813416, 0.9762252875928743, -0.5264007838829963, 0.15877295994727117, -0.9389924272981021, -0.7525982812977172, 0.345872183773896, -1.3069787267877795, 0.09510761323632526, -0.5459658832905917, -0.39035624005146696, 0.5422650091377272, 0.1834884201204868, 1.122991434042094, 0.8806420550540522, 1.7349471997361756, -1.1833241968070871, 1.449773246435611, -0.33927572981040827, -0.828258434177189, -1.5113380865184578, 0.6387573466146391, 1.7000149167888696, -0.3378914282704931, 1.1496572083796348, 1.0035767733095822, 0.2545232451156703, 0.4068982349793815, -0.051019673427518696, 0.5532952439013222, -0.9420606010378074, -1.7114081728304515, -0.3850762450380494, -0.03632324793400444, -0.7913736193566393, -0.0669999503622, 0.8997689494448327, 0.6934393584428097, 0.017241074164844872, -1.201918562524336, -0.7676727172077829, -0.0571884635787579, 0.2340999278063115, 0.5832371426733749, -2.090238390445779, 0.4244221272525574, 0.13888658731209721, 0.5277036888454426, -2.0854883454916577, 0.18057528609203408, -0.22058591693932486, 0.49094198252596516, 0.8385472519105718, 1.5386169816923623, 0.49339498240216634, 1.4144237778105733, 1.4146073913800385, -2.3069061398371336, -0.41324379436680675, -0.9732199985401531, 0.970243367411577, 0.16444828303179287, 0.48350997314544, -1.2043310564021568, -0.795856301846838, -0.19138232345389602, -1.9082410564922943, 1.0427901818466618, -0.431808364625298, -0.5766898986085766, 0.516878855600311, -0.43248578176612423, 1.452465192743121, 0.7340396837811355, 1.4539604597761167, 1.1048123356957973, -0.34197238218579923, -0.4939038834814649, -0.3574841779288253, 2.036442699063657, -0.09490092384150058, 0.9773586504588531, -2.4817191581957676, 0.3046928426214744, 0.8040172805331882, 0.7033717800876261, -0.9930438448338357, 1.451103561793668, -0.584446005927642, -1.2319869530766894, -0.6461650944997451, 0.1241275752716626, -0.06221895677451561, -1.1819495592943652, -0.08787293684036238, 0.04040240650074717, -0.3319472629491687, 1.061108528166056, -0.6767588532655658, -0.3864592925642441, 0.43521816730448454, -0.9592346862118356, -0.4084423488913367, 0.00833445901624529, -1.6415213247808098, 0.9868815642879233, 0.8591640464828046, 0.02484326589784799, -1.2950222637350652, 1.795985132183596, -0.9004373104896848, 0.7229194881908513, 0.7347107263413138, -1.1964936115755596, 0.44243482141730595, 1.4425076074878447, -0.6747030610116889, -0.21287403794020776, 0.1706685521576756, -0.5149075469568986, -0.5389120747483556, 0.4372240548027045, 0.22480572698122206, -0.8811685086896246, -0.18468217950889323, 0.4183224308385702, -0.5103847474942486, 1.2898845308439855, 1.6867352160402012, 0.920216551617634, -0.2676381422038019, -0.5867716218426906, -0.6573833785650687, -2.3601470283192687, -0.6768292002206808, 0.16893473133606401, -0.7643910653622639, -1.259084130090738, 0.9911375544598806, 0.7035284138099055, 0.3492889436591974, -0.00232916700286711, 1.9862684593071631, 0.5204820657051757, -0.8852803907402569, 0.6317103635323014, 0.914807942693685, 0.40048354406754944, -0.5575354753952351, -0.33359100941756825, 0.45408533764239967, -0.7707083271955254, 0.24215156145434416, -0.3602154843335973, -0.19186913436058747, -1.0363219846107903, -0.12541895071315137, 1.9761632449754003, 0.9637677685902305, 0.6399515273003324, 0.6782694626162229, -0.7305354337010574, 1.250746542271697, 0.7805366318718967, -0.4118688630899424, -2.710092667107304, 0.5384450638797866, -0.5026422086915039, -1.1966740638668951, 1.2428885077712832, 0.26631420191092553, 0.8421746262945572, -0.6241509634843481, -1.2971618985427689, -0.9539821793643769, 0.6239795242208513, 0.736740589130596, -0.37616505198418276, 0.6505849166313841, 0.32740069059505283, 1.0250820840520147, 0.027983475799278568, -0.9146851311168257, -0.16758005254860595, -1.8706132825660573, 0.2784093568724547, 0.31376410174761854, -0.11858442300306582, 0.002174025360862421, -0.38200809495350124, -0.9842844817178565, -1.1419125140208897, -2.2786403692472894, -0.22093281380995072, -0.26106399539991054, -0.07272540661367781, -0.4292647998092736, -0.6756356042058043, 0.5846952390461819, 0.32206396268395115, 0.8538766922766244, -0.14328642799407207, 0.24496990275536756, -0.9897911694681063, -0.5404176775797812, -2.9899080891713696, 0.37030557937415576, 0.5870159739951781, 0.11139189480876123, -0.8868665127452928, -1.2521165276202564, -0.21336663916912618, 0.10788346837585401, -1.2498705652277644, 2.0815833589316486, 0.3332230691285075, -0.7308024688591107, 1.49977448007609, 0.35244214092751647, 0.13263766963463325, 0.7032528660115549, -0.224058118796799, -0.012948820917694722, 1.1688911024745683, -0.10007767017570952, 0.3503653929366729, -1.1566898566102717, 0.26120814960586336, 3.0011643029813944, 0.9784708748488228, 1.2514238203850458, 0.9703589804060763, 1.416843983339963, -0.46897897234948444, 0.15372854068168998, 0.0428504107750175, -2.001462002287533, -1.1337554351382497, -1.6771637936713868, -2.5478870581364585, 0.47119585747809717, -0.30616861505323417, -1.1963890109166797, 0.04044374367949453, -0.7311049984046335, 0.11711575782431421, 0.10426909012766551, 0.8970608501354276, -1.962296364536102, 2.237877524259023, 0.5132088583494939, 0.08842066162402158, 0.06672356844640426, 0.06470813651365062, 0.23826041217701158, 0.9878071613375603, 0.859299000009833, 0.6660509951723951, -0.9486817136107089, 2.6921260030317193, -1.6553869838852533, -0.6060864658846089, -1.0833289931292516, 0.5716357190160812, -0.42682158820602506, 0.11900527739783578, -0.5307995322029232, 0.430675351795783, -1.5511552580717913, 0.032047245305696706, 1.2575709655532232, 1.3202998038737719, -0.22060858954457424, 0.28411079700147385, -0.48476220911984513, -0.07880740204594774, 0.27589999715339447, -3.350552357820122, -0.7942493191828129, 0.9990937053832342, -0.42101719323435216, -0.17297095948861932, -0.30833728648909764, 2.0237264348460253, -0.3951591805407199, 0.8870001545659555, 0.6245173710827429, -1.7717865019376298, 1.671086390504131, 0.15442941552470588, 0.08374347464524579, 1.6324069806192625, 1.2482596101559011, 0.4180818163810913, 0.22732530898422196, 0.6564563013088737, -0.1843715308496301, -0.640032126175593, -1.626099064569707, -1.3042622326782176, -0.899817242290389, 1.3380746793700415, -1.5225053120720857, 0.5716292301891005, 0.8350913582496124, 0.22066663139779744, -1.7875074945131821, 0.09505340680009043, 1.519294933227337, -0.057425125151421, -0.6011569776213825, 0.7985075569719939, -1.0203988823879262, 1.4106792979590987, -0.0877993289749468, -1.2432942881364708, 0.5376822763088254, -0.05104548652260154, -0.6385321379984887, 0.6062390007722481, -0.3975558455746153, 1.2269329722541027, -0.6343430405424335, -0.8261701327551745, 0.5547242620270303, 0.22153021794336344, 0.9340184594670112, -0.5406711652476581, -0.47986933104702045, 0.010941616882202673, 1.89055795204877, 1.2061886290075907, -0.22691949964881117, -1.37047708614489, -0.27464163168654077, -1.5604574539368614, 1.226850455953966, 1.1056499327443063, 1.0256257973913063, 0.5220342010205095, -0.659195558314335, 0.2696107366780119, -0.41800440569395886, -1.4612595063210767, -0.7118161537321684, -0.05291595233513516, 0.49972306672146355, -0.7774440903785125, -1.0974849993541016, 0.5108764504942255, -0.9420814584456162, 0.6423769062515604, 0.6770643629009532, 0.10186339495797218, -1.603812392104239, -0.46531144794794355, 0.5170738858721348, 0.018972153559232277, -1.0547147099874243, -1.036553193369824, -0.8312637286197624, 0.8484691005803632, -1.8404560103589351, -0.13656450586577093, -1.270263148080691, 0.6342701965320007, 0.2866588554493784, -0.9781231371697954, 1.2607458719036237, -0.7329872701163707, 0.6630985638231837, 0.7481810387731072, 1.2520679800581067, -1.4228691224730396, -2.284284206829557, -0.48682061063184273, 1.3828232885392666, 1.1472751810484463, 0.22263372961108446, 0.05451118499235583, 1.237540379420743, 1.2830845705718297, 0.10957138450596363, -2.0033586326065924, 1.7291979731917535, -1.3831392634561877, 1.1828715318459362, 0.13352370169087138, 0.7891237132187421, -0.8838501903438717, 1.319204310217849, -0.8631405126156684, 1.8551387891927498, -0.3694260575174895, 1.6630728405635988, -1.4039406166480037, 1.2211902457216013, 0.2639480288189047, -2.6968565238670785, 0.06817870417391031, -1.7331706525795174, -0.7838773481247635, 1.5329237111217122, 0.48800592217753896, 0.10247828172364541, 0.26945290759640256, 0.9722642338666949, 0.228745158353501, 1.5118561389945024, -0.8973653434594528 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] }, { "data": { "x": [ -0.012175034980583989, 0.29794759598063486, 0.5041381003188307, 1.0665639484931024, -0.4737056895203979, 0.38085511435279806, -0.24274296622924624, -0.19765388487571836, -0.5842999709902038, -0.019517329368945024, -0.5606969265065077, 0.044910485203611114, -0.21447898602357734, -0.4941744265784009, 0.9226806238316831, 0.4188911857562415, -0.13481937944613273, -3.3048905935707604, -0.2197370123019107, 0.11566754613517728, -1.178993252456855, -0.2586586187957297, 1.473518086295826, -0.39415888649939446, 0.5395581144231686, 1.4329626128534136, 0.14490391372570116, -0.4007483769979196, 0.3342952336700743, 0.48968404523845294, -0.045025957105677236, 1.0483748687985357, -0.5146827382418395, 0.9328889515119895, -0.7713135753000618, 0.4460518292721393, -0.8140956394134728, 0.07148006737680059, -0.16913435227327503, 0.7962625935969818, 0.8736052821884369, 0.26764642606700645, -0.7090670405117205, 1.3941385575073637, -0.5537149324748281, -0.6252525505617096, 1.9296592662123577, 0.8240327020699542, -0.44540633002554425, 1.6404582588742245, -1.084412230528007, 0.235971510978304, -0.0040445898752509, -1.4454261935992399, 1.830347334980545, 0.14217865923288017, 0.3211179405692478, 0.021041713012508772, -0.029198080000111707, 0.43720567445287317, -1.2066596853358451, -0.7014686165566095, 0.5320776338993813, -0.04566937211240266, 1.6195895008762355, 0.033231734733092794, 0.9044481927503666, -0.9668112281676826, -0.010597213518983607, 1.250794278935047, 0.2285028059415048, -0.8650420955605815, -0.911279819890441, 1.997576426837774, 0.2964110193339446, -2.2892307369991487, 1.0236370932354475, 0.36124206297011363, -0.9840805760193035, -1.4541226189176797, 0.10996826410529587, 0.973844525700083, -1.2524768726239304, 0.35112529846224216, 1.5046206850463755, -1.1504345896026598, -1.306568284949997, 0.6347474685889221, 1.3329264851540308, -0.5697746639464111, -0.2029529258576175, -1.3863744336256085, 1.0508146745045088, -0.3138298376619724, 1.2217754358956021, 0.056297186870514826, 0.5116469314697465, -0.29149192578605243, 0.35519819062125046, -1.6689008832653318, -0.13824640902194718, 0.040814137546181545, -0.4772975531522654, -0.7783754973902667, -1.4785457964955215, 0.2640594939220428, -1.2204781558364068, 1.0599396691553178, -0.012034235706444473, 2.5234572596987532, -0.11145814915357358, -0.9438516079584924, 1.733295493845268, 1.1503464115930708, -0.5438493320118555, 0.8593665849634119, 0.857482108883559, -0.21221969415321268, -0.5235284464936003, 0.1985224510520283, -0.2955175111801914, -0.2400656679427524, 0.42953906763659366, -0.16002278422434865, -0.06358261364501183, -0.32417552781631465, 1.6072906233574573, 1.0499423777662638, -0.3421530926506195, -1.4723791610647419, 1.8293849488882894, -1.2512869396337287, 0.5948942864752638, 0.05138389859327554, 0.42521794114392564, -0.06671573219660704, -0.9863460762273477, 0.5063932527585168, 0.7994374132546331, -0.5492935954497937, 0.5720640221408333, -2.087420560082536, -1.0472829333128786, -1.3002985230335777, -1.0327710968340615, -0.15843963119103785, 0.6341925578825983, 0.6542698783920413, 1.2444020299741594, -0.3418789564564849, 0.13385963554122576, 0.09661725783766434, 0.19468810630884073, -1.0210172481473925, 0.517209148403882, 0.9867924317106277, -1.9443995176613156, 0.4169867958238135, 1.718328008544008, -0.1324778578668459, 0.8277225560444361, 0.10253372686798139, -4.0741685387718425, 0.8579173896808556, -0.49746024741614736, 2.2861256772229592, -1.2655216526728008, 1.5132687554497277, -0.018743203357834522, 0.24540664282664956, 0.6183345333010757, -0.3252273091949595, 0.08458528585043897, -0.6767492953185327, -0.4327270136736399, -0.17852618377499901, -0.7268983164837333, 0.5487277108937472, -1.7451471298116732, -0.23210330559354447, 1.0192340032552563, 0.8092825759218484, -0.26142853558427964, 0.34647251597861, 1.4683908665931236, -1.4224090729206385, -1.7007034546560316, 0.3736610451763355, 0.4107636804584369, -1.501954707867601, 2.5669358968488702, -0.07932843791964456, -0.5992411576673131, -0.3402754275859364, -0.7828680729827787, 0.30616601160995754, 0.07015765978964136, -0.07510131996298416, 0.1570913429000623, 1.242799234762724 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] } ], "kind": "subplots", "layout": { "align": false, "fit": true, "name": "grid", "ncol": 2, "nrow": 1 } }, "output_type": "lets_plot_spec", "swing_enabled": true }, "text/html": [ " <div id=\"GTdlBa\" ></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(\"GTdlBa\");\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\":1,\n", "\"fit\":true,\n", "\"align\":false\n", "},\n", "\"figures\":[{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,1.0,3.0,7.0,8.0,9.0,21.0,20.0,23.0,44.0,54.0,66.0,80.0,71.0,85.0,103.0,76.0,92.0,66.0,51.0,41.0,28.0,22.0,13.0,8.0,3.0,2.0,1.0,1.0],\n", "\"x\":[-3.3879569114892867,-3.1663525746568784,-2.9447482378244696,-2.7231439009920613,-2.501539564159653,-2.279935227327244,-2.058330890494836,-1.8367265536624275,-1.615122216830019,-1.3935178799976105,-1.1719135431652021,-0.9503092063327938,-0.728704869500385,-0.5071005326679767,-0.2854961958355684,-0.06389185900315963,0.1577124778292487,0.379316814661657,0.6009211514940658,0.8225254883264741,1.0441298251588824,1.2657341619912907,1.487338498823699,1.7089428356561083,1.9305471724885166,2.152151509320925,2.3737558461533332,2.5953601829857416,2.81696451981815,3.038568856650559]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"1\"\n", "},{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,5.0,9.0,8.0,9.0,13.0,17.0,22.0,26.0,18.0,20.0,9.0,13.0,5.0,7.0,5.0,4.0,0.0,1.0,2.0],\n", "\"x\":[-4.113277264892719,-3.8815765101388413,-3.649875755384963,-3.4181750006310847,-3.1864742458772066,-2.954773491123328,-2.72307273636945,-2.491371981615572,-2.259671226861694,-2.0279704721078153,-1.7962697173539373,-1.5645689626000592,-1.3328682078461807,-1.1011674530923026,-0.8694666983384245,-0.637765943584546,-0.4060651888306679,-0.1743644340767898,0.057336320677088715,0.2890370754309668,0.5207378301848449,0.752438584938723,0.984139339692601,1.21584009444648,1.447540849200358,1.6792416039542362,1.9109423587081142,2.1426431134619923,2.3743438682158704,2.6060446229697494]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"2\"\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=e116c7ef-319e-477f-b7f5-064c8802b0d8 width=\"100%\" height=\"100%\" style=\"max-width: 900.0px; max-height: 400.0px;\" viewBox=\"0 0 900.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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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", "#pjdChRk .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=\"pjdChRk\">\n", " <rect x=\"0.0\" y=\"0.0\" height=\"400.0\" width=\"900.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=\"442.0\" height=\"388.0\" 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", "#pMLOBdF .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", "#pMLOBdF .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", "#pMLOBdF .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", "#pMLOBdF .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pMLOBdF .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", "#pMLOBdF .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", "#pMLOBdF .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", "#pMLOBdF .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", "#djRU5aV .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", "#pMLOBdF .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", "#pMLOBdF .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", "#djRU5aV .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", "#pMLOBdF .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", "#pMLOBdF .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", "#djRU5aV .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", "#djRU5aV .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", "#djRU5aV .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=\"pMLOBdF\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"44.219101359446285\" y1=\"0.0\" x2=\"44.219101359446285\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"97.4204154528923\" y1=\"0.0\" x2=\"97.4204154528923\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"150.62172954633832\" y1=\"0.0\" x2=\"150.62172954633832\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"203.82304363978432\" y1=\"0.0\" x2=\"203.82304363978432\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"257.0243577332303\" y1=\"0.0\" x2=\"257.0243577332303\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"310.2256718266763\" y1=\"0.0\" x2=\"310.2256718266763\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"363.4269859201223\" y1=\"0.0\" x2=\"363.4269859201223\" y2=\"342.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(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"389.0581836335954\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"278.75450762829405\" x2=\"389.0581836335954\" y2=\"278.75450762829405\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"215.50901525658807\" x2=\"389.0581836335954\" y2=\"215.50901525658807\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"152.26352288488212\" x2=\"389.0581836335954\" y2=\"152.26352288488212\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"89.01803051317614\" x2=\"389.0581836335954\" y2=\"89.01803051317614\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"25.772538141470193\" x2=\"389.0581836335954\" y2=\"25.772538141470193\" 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(#ceXVD3C)\" clip-bounds-jfx=\"[rect (25.941816366404606, 0.0), (389.0581836335954, 342.0)]\">\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"359.5840788128685\" y=\"338.8377253814147\" height=\"3.162274618585286\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"347.79443688457764\" y=\"338.8377253814147\" height=\"3.162274618585286\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"336.0047949562869\" y=\"335.6754507628294\" height=\"6.324549237170572\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"324.2151530279961\" y=\"332.5131761442441\" height=\"9.486823855755915\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"312.4255110997054\" y=\"316.7018030513176\" height=\"25.298196948682403\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"300.6358691714146\" y=\"300.8904299583911\" height=\"41.10957004160889\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"288.84622724312385\" y=\"272.4299583911234\" height=\"69.57004160887658\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"277.056585314833\" y=\"253.45631067961165\" height=\"88.54368932038835\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"265.26694338654227\" y=\"212.34674063800279\" height=\"129.65325936199721\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"253.4773014582515\" y=\"180.72399445214978\" height=\"161.27600554785022\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"241.68765952996074\" y=\"133.28987517337032\" height=\"208.71012482662968\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"229.89801760166998\" y=\"51.070735090152596\" height=\"290.9292649098474\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"218.1083756733792\" y=\"101.66712898751734\" height=\"240.33287101248266\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"206.31873374508842\" y=\"16.285714285714278\" height=\"325.7142857142857\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"194.5290918167977\" y=\"73.20665742024966\" height=\"268.79334257975034\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"182.7394498885069\" y=\"117.47850208044383\" height=\"224.52149791955617\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"170.94980796021613\" y=\"89.01803051317614\" height=\"252.98196948682386\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"159.16016603192537\" y=\"133.28987517337032\" height=\"208.71012482662968\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"147.37052410363458\" y=\"171.2371705963939\" height=\"170.7628294036061\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"135.58088217534382\" y=\"202.85991678224687\" height=\"139.14008321775313\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"123.79124024705305\" y=\"269.26768377253813\" height=\"72.73231622746187\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"112.00159831876229\" y=\"278.75450762829405\" height=\"63.24549237170595\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"100.21195639047151\" y=\"275.5922330097087\" height=\"66.4077669902913\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"88.42231446218075\" y=\"313.5395284327323\" height=\"28.46047156726769\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"76.63267253388999\" y=\"316.7018030513176\" height=\"25.298196948682403\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"64.84303060559921\" y=\"319.86407766990294\" height=\"22.13592233009706\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"53.05338867730845\" y=\"332.5131761442441\" height=\"9.486823855755915\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"41.263746749017685\" y=\"338.8377253814147\" height=\"3.162274618585286\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"29.474104820726893\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"17.68446289243613\" y=\"338.8377253814147\" height=\"3.162274618585286\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"ceXVD3C\">\n", " <rect x=\"25.941816366404606\" y=\"0.0\" width=\"389.0581836335954\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(25.941816366404606 342.0 ) \">\n", " <g transform=\"translate(44.219101359446285 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-3</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(97.4204154528923 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(150.62172954633832 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(203.82304363978432 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(257.0243577332303 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(310.2256718266763 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(363.4269859201223 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>3</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <line x1=\"0.0\" y1=\"0.0\" x2=\"389.0581836335954\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 278.75450762829405 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 215.50901525658807 ) \">\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>40</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 152.26352288488212 ) \">\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>60</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 89.01803051317614 ) \">\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>80</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 25.772538141470193 ) \">\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>100</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(241.4709081832023 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"djRU5aV\">\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=\"442.0\" height=\"388.0\" x=\"452.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", "#pUYhSPq .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", "#pUYhSPq .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", "#pUYhSPq .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", "#pUYhSPq .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pUYhSPq .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", "#pUYhSPq .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", "#pUYhSPq .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", "#pUYhSPq .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", "#dywKSKJ .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", "#pUYhSPq .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", "#pUYhSPq .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", "#dywKSKJ .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", "#pUYhSPq .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", "#pUYhSPq .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", "#dywKSKJ .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", "#dywKSKJ .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", "#dywKSKJ .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=\"pUYhSPq\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(17.961210910936405 0.0 ) \">\n", " <g>\n", " <line x1=\"29.945082649038113\" y1=\"0.0\" x2=\"29.945082649038113\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"133.79868010515918\" y1=\"0.0\" x2=\"133.79868010515918\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"237.65227756128027\" y1=\"0.0\" x2=\"237.65227756128027\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"341.50587501740137\" y1=\"0.0\" x2=\"341.50587501740137\" y2=\"342.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(17.961210910936405 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"397.0387890890636\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"279.3626373626374\" x2=\"397.0387890890636\" y2=\"279.3626373626374\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"216.72527472527474\" x2=\"397.0387890890636\" y2=\"216.72527472527474\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"154.0879120879121\" x2=\"397.0387890890636\" y2=\"154.0879120879121\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"91.45054945054946\" x2=\"397.0387890890636\" y2=\"91.45054945054946\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"28.813186813186803\" x2=\"397.0387890890636\" y2=\"28.813186813186803\" 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(#cOh3pto)\" clip-bounds-jfx=\"[rect (17.961210910936405, 0.0), (397.0387890890636, 342.0)]\">\n", " <g transform=\"translate(17.961210910936405 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"366.9600929459527\" y=\"316.94505494505495\" height=\"25.05494505494505\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"354.9286144887083\" y=\"329.4725274725275\" height=\"12.527472527472526\" width=\"12.031478457244305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"342.89713603146396\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"330.8656575742196\" y=\"291.8901098901099\" height=\"50.1098901098901\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"318.8341791169753\" y=\"279.3626373626374\" height=\"62.63736263736263\" width=\"12.031478457244305\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"306.80270065973093\" y=\"254.30769230769232\" height=\"87.69230769230768\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"294.77122220248657\" y=\"279.3626373626374\" height=\"62.63736263736263\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"282.7397437452422\" y=\"179.14285714285714\" height=\"162.85714285714286\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"270.70826528799785\" y=\"229.25274725274727\" height=\"112.74725274725273\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"258.6767868307535\" y=\"91.45054945054946\" height=\"250.54945054945054\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"246.64530837350915\" y=\"116.50549450549451\" height=\"225.4945054945055\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"234.61382991626482\" y=\"16.285714285714278\" height=\"325.7142857142857\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"222.58235145902046\" y=\"66.39560439560438\" height=\"275.6043956043956\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"210.5508730017761\" y=\"129.03296703296704\" height=\"212.96703296703296\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"198.51939454453176\" y=\"179.14285714285714\" height=\"162.85714285714286\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"186.4879160872874\" y=\"229.25274725274727\" height=\"112.74725274725273\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"174.45643763004307\" y=\"241.7802197802198\" height=\"100.2197802197802\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"162.4249591727987\" y=\"229.25274725274727\" height=\"112.74725274725273\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"150.39348071555435\" y=\"279.3626373626374\" height=\"62.63736263736263\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"138.36200225830999\" y=\"316.94505494505495\" height=\"25.05494505494505\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"126.33052380106567\" y=\"316.94505494505495\" height=\"25.05494505494505\" width=\"12.031478457244319\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"114.29904534382129\" y=\"329.4725274725275\" height=\"12.527472527472526\" width=\"12.031478457244347\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"102.26756688657696\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"90.2360884293326\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"78.20460997208826\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"66.1731315148439\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"54.14165305759957\" y=\"329.4725274725275\" height=\"12.527472527472526\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"42.11017460035521\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244361\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"30.078696143110847\" y=\"342.0\" height=\"0.1\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"18.047217685866514\" y=\"329.4725274725275\" height=\"12.527472527472526\" width=\"12.031478457244333\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"cOh3pto\">\n", " <rect x=\"17.961210910936405\" y=\"0.0\" width=\"397.0387890890636\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(17.961210910936405 342.0 ) \">\n", " <g transform=\"translate(29.945082649038113 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-4</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(133.79868010515918 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(237.65227756128027 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(341.50587501740137 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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", " <line x1=\"0.0\" y1=\"0.0\" x2=\"397.0387890890636\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(17.961210910936405 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 279.3626373626374 ) \">\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>5</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 216.72527472527474 ) \">\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>10</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 154.0879120879121 ) \">\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>15</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 91.45054945054946 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 28.813186813186803 ) \">\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>25</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(237.4806054554682 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"dywKSKJ\">\n", " </g>\n", " </svg>\n", "</svg>\n", " <script>document.getElementById(\"e116c7ef-319e-477f-b7f5-064c8802b0d8\").style.display = \"none\";</script>" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gggrid(listOf(p1, p2))" ] }, { "cell_type": "markdown", "id": "dangerous-master", "metadata": {}, "source": [ "#### 2. Share Scale Limits of the Y-axis" ] }, { "cell_type": "code", "execution_count": 6, "id": "efficient-doubt", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.625987Z", "iopub.status.busy": "2025-12-03T16:06:03.625565Z", "iopub.status.idle": "2025-12-03T16:06:03.692952Z", "shell.execute_reply": "2025-12-03T16:06:03.692820Z" } }, "outputs": [ { "data": { "application/plot+json": { "apply_color_scheme": true, "output": { "figures": [ { "data": { "x": [ 1.7687943677666822, 0.10628211826095219, 1.7204367528361415, -0.037534100873246996, -0.7556292895100587, -0.9951161662703086, 1.052027068066767, -0.6497562324361997, -0.47969604178646064, 1.3195412359422278, 0.6471885375454148, -0.6145630713451975, 0.21099118887163767, 0.83061591557465, 0.4890950549463388, 1.3037914453654387, 0.9791647128033308, -1.304372469120525, -0.6739853262611326, -0.6302272555314844, -0.06567293517548581, 0.16992439572141083, 0.4985272158114654, 0.3744336799283743, 0.8193988829709237, 2.429780509168998, 0.35327583135456675, 0.34645985018170156, 0.564510581840672, 1.1079917758816, -2.20104878328904, 1.9695418127098692, -0.2364138746138622, -0.9260104971066431, -0.23550283017719809, -0.01921041177944297, -0.8623579647574651, -0.04184743225913421, -0.34086213093508905, 0.6989387291958685, -0.21280602574129706, -1.5229462883897182, -1.114669649931767, -0.7246596018824761, -0.9795078835494803, 0.43048299121850986, 0.5860946664293265, 0.411783051565248, 2.439598419520245, -0.30589367627540626, -0.03625210379296746, -0.01523713036011583, 0.6748592497714744, 0.449083044780863, 0.7510927431339195, -0.209489786045136, -0.7633801278093398, -0.37577099825301746, 0.14629225501397528, -0.03366700906389058, -0.4992531374770084, 0.5161937494021966, 0.5548153186535513, -0.5079465545590672, -1.021287990885576, 1.8600533054767678, -1.3941301234610528, -0.5876750570891159, 0.27922173427881986, -1.1260343908468196, -1.577245894169239, 1.6868507959809638, -0.34315520906864366, 0.8756673838511702, -0.013202904846600071, 0.1663109595197368, 0.25926468816943765, 0.6214371542812759, 0.40713450838998066, 0.05660059883189231, -0.5927007106253308, 0.2144892451035325, 0.6705129011671771, -0.4192229557817511, -0.13399160735362278, -1.5234992785571666, -0.5760061861059607, 2.2972205355496347, 2.162580230059769, 1.0480461096358216, 1.0609063932362777, -1.3878584214688807, 0.6502887453513964, -1.494802096457127, 0.698933409561582, 1.0279802603891166, -0.7139967016700057, -0.7226340957160897, 0.2725587805228503, -0.10652537707272984, -0.7700645448834437, 0.4613209775995895, 0.4558764090361004, 1.2745381647988683, 1.3664038748711067, -0.5964545000969897, 0.8425859802512796, -1.1060675506974833, -0.11636201252429614, -1.130255335904117, 0.14075812150619382, 0.8628566536023579, 1.6070249894350475, 0.5703388732422935, 1.0595189144315256, -1.8499589529892804, 0.9362860024327014, -0.1535770994097404, 2.0405377240487037, 1.0763448029144767, 0.22485134726888026, 1.7007898970425377, -0.28005757238379236, 0.9570609994345478, -0.6185873758407429, -1.2014680459389429, -0.9947057654083926, -0.20067770025217516, 0.2571029176665626, -0.883927351830682, 0.12808741327939197, 0.5992307710873707, 0.12008433098103098, -0.08485212420192703, 0.31237233238563655, 0.24242726591735153, -0.06390427097507555, -1.2761512215831583, 1.4429536418920819, 1.1118445398381875, 0.04105183955117125, 0.4456661177149582, 0.7128363886693093, 1.3421394998417036, 1.4421668576965316, 0.516055009356753, -1.3147258919070557, -1.7788031740809092, -0.3713653427805966, 1.2091311389736596, 0.35425225249854947, 0.6107370879132182, -0.1414589368742329, -0.8857769913086667, 1.6322316964575883, 0.6699997627240689, -0.21740801413146052, -0.6431289330781157, -0.15060313947856438, 1.2255641097483512, -0.26336216578687954, -1.1288246390012904, 0.08564293390175488, 0.1695508442940134, -0.9549143317713982, -0.381899664359382, -0.2697790924907474, 1.1500248968433444, 0.797187566115551, -2.2555386162293702, 1.5271162429033516, -1.4448616414952375, 0.5528442713502834, 0.8665758998228781, 0.047531454194312754, -0.3979461455918577, -0.9196333950121731, 0.7723500421338588, -0.7005620370822323, -0.57814083100412, -0.3958371590421287, -0.378819582767001, 1.2092623243348053, 0.7802751224122251, 0.34213111783684963, 0.061883850451380215, 1.742883074607315, -0.07056892738486359, 1.8711704286853277, 0.5241690429678856, 0.3716901674784058, -1.125930502067472, 0.6342731753445917, 0.9179042710608684, -0.7558901282490996, 0.5333214869552843, -0.8367682885827396, -0.21003644242206773, 0.06430918371432055, -0.7963578622290897, -0.10322234060563841, -0.10729646196266507, 1.3955424790700066, -0.2795516756720527, -0.5949838356584947, -0.17391777208262518, 0.7781778683010006, 0.4838407983407719, -0.2907333002772144, 0.6142059106061174, 0.7096436983664091, -0.4186179449490197, 0.8897525193469439, 0.6755331598619769, -0.6003620457879268, -0.4113401114570434, -0.2067417201249644, 0.0838256625993102, -0.5203097510627356, -0.2601960272156041, -0.8104079314223315, 0.16436395973534848, -1.0663788895473252, 0.1808957134519183, 0.5305625775777306, 1.6829284627055878, -0.5557491767431979, -1.0634321486292087, -1.2666533155069772, 0.32906296025494386, -0.5633267393367979, 0.262974032081511, 0.1232334861376412, 0.8204655556799958, 1.0879394118426926, 0.29841595257271913, -0.9885950409767389, -0.5929506072429108, -0.662398228279716, 0.46830285742092603, -0.9790273486998664, -0.7895347575387687, -0.4917516072015227, -0.08993262666452023, 2.596758541747095, -0.628648848923298, 0.682907578105213, 0.2514053661935212, 0.9820076737786156, -0.5352359198270071, 0.5596172330947177, 0.18958298990899208, 0.5929605884828225, -0.25127027189474943, 1.2320591242109102, -0.024646567090903636, -0.5816988690813153, 0.0844867434164911, 1.3340639025541705, -0.003709199153535868, 0.46927429464352777, 2.9183293813973723, 0.7437205396027897, -0.6358574634101807, 0.5400566126041787, 0.6617015720199636, -0.8754172749422224, 0.25872922450704705, -0.7230102683126051, -0.5172977863752761, -1.1052377041941381, -0.11503518858438899, -0.8859810401206246, 0.7647843417089121, 0.2977995676256951, -0.3668763992569928, -0.36234436143127996, 0.4404508071548277, -0.6944932923483026, 0.8015861094938902, 0.007521073825629, 0.23015007538843069, 0.9908114041217525, 0.5531681245624889, 0.6860044518648638, -0.4560939999214513, -1.482165095663803, -0.6156090453308964, 0.6617221260493498, -1.051582086895677, -1.1909700536307433, -0.6951258158872021, -0.49201389186246913, 0.5240601552175225, 1.4598975106105863, 0.47819134918690737, 0.060417648691056716, 0.21641450744320817, -1.397164062958668, -2.5207387460245303, 0.21049661098308772, 0.44953292924469673, -0.8293406849588575, -0.6674502122548439, -0.49849852185190413, 0.24944981770908597, -1.160232872868664, 1.2916505588770553, 0.7714438084049878, -1.1140124457870084, 0.34182015837346347, 0.3669813662062043, -0.002820215234065526, 1.6812042084067185, -1.866752474241616, 0.8973406703714665, 0.08399261661618622, 0.19277683039008797, 0.7695000777467759, 0.6474230039826419, -0.1023323713132523, -0.4173400762248842, -0.37706761969258373, -0.715289925505138, 0.2244053211859935, -1.611854380941278, -0.8794984875527906, -0.7904687371739758, -1.1680049774312382, 1.788652825082633, -2.2661175849781885, 0.7411582967255195, -0.3468277404861569, 0.8689599643571382, -1.879646919135953, -1.5141328573173538, -0.1858457929582742, 0.6245382840433624, -1.1750710219563483, 0.4281771969367571, 0.6122212268104209, -1.9126648763488732, -0.8159054313718033, 1.1147580162818758, 0.8066584957152039, -0.9262691798221463, -0.6640849676575586, 1.195291706969711, -1.9778285003658291, 0.5032955371468468, -0.9892979916891699, 1.0889515268329102, -0.579270195598099, -1.195131203654272, 1.687320701115782, 0.15360700295645113, -1.097998522861697, -0.06874923792658369, -0.6084846028517787, 1.8377333268641671, 0.6270565214971554, 0.613502020517991, 0.4874657702591926, -2.527198391757681, -1.5825429493833625, -1.042768564765132, -1.748483604834765, -0.15401136442471855, 0.2172442670321591, 0.9123990549337705, -0.045472803365322965, 1.490397051133071, 1.4948161074248465, -1.127991510268807, 1.1944935975691107, 1.2713363151777186, -0.017202013877178252, -0.13360362731757017, 1.0808013503578553, 1.3050685158894921, 0.018111977145865585, 1.219245048977367, -1.1382408824035277, -0.5770634328394819, 1.2778088136336874, 1.3940155696045688, -1.0859707521259725, 0.05725116489287355, 0.5632858581279874, -0.9809740904817519, 0.3158842259801124, -0.2378251362273881, 0.17796330976482383, -0.2458051916960259, 0.2046967109150976, -0.8840205511357346, -0.09909521750374449, -1.70417570352714, 0.851309656835214, 0.7211240841444065, -0.885830780225618, 0.8146116303728623, 0.4567105643188149, -0.8937845981722212, -0.5180043437191163, -0.8949918184734598, -0.45742698798621884, 2.0210092777288655, 1.7407477909200215, -0.2625413121364725, 0.07563509844789362, 0.5563065121842512, -0.07144690099476853, 0.8954061059962835, -2.571989791091301, 0.918544928811703, -1.2850149567885354, 0.13368583741335258, -0.37787515136607297, 0.0030086998478405596, -0.17254346636623943, 1.2108466855693627, -0.664822744931719, 0.07593726768739008, 1.0470533404975868, 1.1287523224718319, -1.5438745860196132, -1.1790340188368345, -2.299672754410145, 1.0198011710870574, -0.019404870584150715, -0.49949110648973993, -0.0589036922935962, 0.6286546779398563, 1.459419051904404, 0.8526953432051373, 0.6661426434983827, -0.5150825884260762, 2.1183980144227808, -0.2458434065980494, 0.10599190141821684, -0.4065058922779037, 0.5916760973376979, -1.9236371555442888, -0.5421684976921096, 1.0518975417720011, 0.21971183881774903, 0.43247090064502264, -0.1502773445675138, 1.526798426072779, 1.8288204899301639, -1.8618349847533102, -2.0919818104035377, -0.7716134224331724, -1.7408998005851453, 2.136876913494888, 0.4559433273643078, 1.3604923410171677, 0.054227328297997174, -1.3808697575138646, -0.3639825311241219, 0.055966007399287365, -2.7292769507436705, 0.7038733389745608, -1.1697702185595809, -1.9417541318343463, 2.0670987527951965, -0.6325495516049673, -0.7157335328391775, -0.9578766343627506, 1.549704176565892, 0.8531932641906019, -0.5349983855138715, -0.9640852042332527, 0.46775067636278184, -2.1389661047922126, -0.6328477512225166, 0.5256091666809566, 0.2864163007458042, 0.6981923485184115, 1.0521704825249567, -0.10938765172918262, -1.784560243504809, -0.7676374065516406, -1.0373745417933615, -0.2706521248876184, 0.33527096803866147, 0.047286619643391106, 0.23541666105027348, 1.33452807848067, -1.89730026523029, -1.8425563689254174, 0.43845185617349924, 0.0331278967321578, 0.9831928734996545, 0.33521750631797204, 1.3731423233050832, 2.2202381834564187, -0.18323803356208052, 0.012179045892745382, 0.28049446746718826, 0.9004372155345585, -0.5713205967738314, -0.5198042725869185, 0.7989302303403246, -0.6667354000595791, 0.15625402187843146, -2.1208179015850295, -1.5223687842178768, -1.8033523920571315, -0.7627821714513905, 0.6089899673423871, -0.5347783330106071, 0.4368145318960496, 1.4673573622646428, -0.9817834551657011, -0.5832679124737555, -1.3020107962275416, 0.7377710936243188, 2.197811295701506, -2.430639860337569, 1.6796336472932694, -0.010054855207307796, 0.7519682599658991, -0.8876996364251732, -0.3023325288016984, -0.5272719502734191, 0.9779065704338524, -0.08602215165207698, -0.09255129981596599, 1.6295590919091514, -0.9920202273840795, -1.7520549855245477, -0.4021432935804096, -1.263441418110046, 0.7258723981333883, 0.5533275687777933, -0.2901886511501614, -0.4344583897078483, -1.3565804587844976, -2.562617231127234, -1.3235529005802005, 0.0587485765260092, 0.10230217784666464, 0.9094120732184552, 0.2578641267613546, -0.5589508150866048, 0.3253269549992064, 0.11626097303683874, 0.9704212482203466, -1.3951388200697916, 1.419142118729542, 0.6488514459953479, 0.7617982417210711, 1.0036023898475461, 0.12564467420270892, 0.9535184322259238, -0.22688228907356736, 0.15341374258410073, 0.06420769548658052, -0.6151873801579946, 0.60094173160055, 0.1868026706084533, 1.068306057193773, -0.6012386775611135, 0.012632812086998069, -1.6216715545947054, 0.238153072030393, -0.33459420411498836, 0.30348074420805554, -0.05922287072652768, -0.022563421676623754, 0.32207622578054684, -0.03007718522617802, -0.39366170620553265, 0.9071577365162239, 0.40637035377753544, 0.4263610805969633, 0.1918003932548992, 0.6371439538289745, -0.673627091429265, 0.6774877704945061, 0.8001437193782343, 0.8194599272420812, -0.48288943218728725, 0.7906730819215302, 0.8720606717064744, 1.3674043748409335, -0.17116634630984354, -1.154450954935009, 0.4007262308813416, 0.9762252875928743, -0.5264007838829963, 0.15877295994727117, -0.9389924272981021, -0.7525982812977172, 0.345872183773896, -1.3069787267877795, 0.09510761323632526, -0.5459658832905917, -0.39035624005146696, 0.5422650091377272, 0.1834884201204868, 1.122991434042094, 0.8806420550540522, 1.7349471997361756, -1.1833241968070871, 1.449773246435611, -0.33927572981040827, -0.828258434177189, -1.5113380865184578, 0.6387573466146391, 1.7000149167888696, -0.3378914282704931, 1.1496572083796348, 1.0035767733095822, 0.2545232451156703, 0.4068982349793815, -0.051019673427518696, 0.5532952439013222, -0.9420606010378074, -1.7114081728304515, -0.3850762450380494, -0.03632324793400444, -0.7913736193566393, -0.0669999503622, 0.8997689494448327, 0.6934393584428097, 0.017241074164844872, -1.201918562524336, -0.7676727172077829, -0.0571884635787579, 0.2340999278063115, 0.5832371426733749, -2.090238390445779, 0.4244221272525574, 0.13888658731209721, 0.5277036888454426, -2.0854883454916577, 0.18057528609203408, -0.22058591693932486, 0.49094198252596516, 0.8385472519105718, 1.5386169816923623, 0.49339498240216634, 1.4144237778105733, 1.4146073913800385, -2.3069061398371336, -0.41324379436680675, -0.9732199985401531, 0.970243367411577, 0.16444828303179287, 0.48350997314544, -1.2043310564021568, -0.795856301846838, -0.19138232345389602, -1.9082410564922943, 1.0427901818466618, -0.431808364625298, -0.5766898986085766, 0.516878855600311, -0.43248578176612423, 1.452465192743121, 0.7340396837811355, 1.4539604597761167, 1.1048123356957973, -0.34197238218579923, -0.4939038834814649, -0.3574841779288253, 2.036442699063657, -0.09490092384150058, 0.9773586504588531, -2.4817191581957676, 0.3046928426214744, 0.8040172805331882, 0.7033717800876261, -0.9930438448338357, 1.451103561793668, -0.584446005927642, -1.2319869530766894, -0.6461650944997451, 0.1241275752716626, -0.06221895677451561, -1.1819495592943652, -0.08787293684036238, 0.04040240650074717, -0.3319472629491687, 1.061108528166056, -0.6767588532655658, -0.3864592925642441, 0.43521816730448454, -0.9592346862118356, -0.4084423488913367, 0.00833445901624529, -1.6415213247808098, 0.9868815642879233, 0.8591640464828046, 0.02484326589784799, -1.2950222637350652, 1.795985132183596, -0.9004373104896848, 0.7229194881908513, 0.7347107263413138, -1.1964936115755596, 0.44243482141730595, 1.4425076074878447, -0.6747030610116889, -0.21287403794020776, 0.1706685521576756, -0.5149075469568986, -0.5389120747483556, 0.4372240548027045, 0.22480572698122206, -0.8811685086896246, -0.18468217950889323, 0.4183224308385702, -0.5103847474942486, 1.2898845308439855, 1.6867352160402012, 0.920216551617634, -0.2676381422038019, -0.5867716218426906, -0.6573833785650687, -2.3601470283192687, -0.6768292002206808, 0.16893473133606401, -0.7643910653622639, -1.259084130090738, 0.9911375544598806, 0.7035284138099055, 0.3492889436591974, -0.00232916700286711, 1.9862684593071631, 0.5204820657051757, -0.8852803907402569, 0.6317103635323014, 0.914807942693685, 0.40048354406754944, -0.5575354753952351, -0.33359100941756825, 0.45408533764239967, -0.7707083271955254, 0.24215156145434416, -0.3602154843335973, -0.19186913436058747, -1.0363219846107903, -0.12541895071315137, 1.9761632449754003, 0.9637677685902305, 0.6399515273003324, 0.6782694626162229, -0.7305354337010574, 1.250746542271697, 0.7805366318718967, -0.4118688630899424, -2.710092667107304, 0.5384450638797866, -0.5026422086915039, -1.1966740638668951, 1.2428885077712832, 0.26631420191092553, 0.8421746262945572, -0.6241509634843481, -1.2971618985427689, -0.9539821793643769, 0.6239795242208513, 0.736740589130596, -0.37616505198418276, 0.6505849166313841, 0.32740069059505283, 1.0250820840520147, 0.027983475799278568, -0.9146851311168257, -0.16758005254860595, -1.8706132825660573, 0.2784093568724547, 0.31376410174761854, -0.11858442300306582, 0.002174025360862421, -0.38200809495350124, -0.9842844817178565, -1.1419125140208897, -2.2786403692472894, -0.22093281380995072, -0.26106399539991054, -0.07272540661367781, -0.4292647998092736, -0.6756356042058043, 0.5846952390461819, 0.32206396268395115, 0.8538766922766244, -0.14328642799407207, 0.24496990275536756, -0.9897911694681063, -0.5404176775797812, -2.9899080891713696, 0.37030557937415576, 0.5870159739951781, 0.11139189480876123, -0.8868665127452928, -1.2521165276202564, -0.21336663916912618, 0.10788346837585401, -1.2498705652277644, 2.0815833589316486, 0.3332230691285075, -0.7308024688591107, 1.49977448007609, 0.35244214092751647, 0.13263766963463325, 0.7032528660115549, -0.224058118796799, -0.012948820917694722, 1.1688911024745683, -0.10007767017570952, 0.3503653929366729, -1.1566898566102717, 0.26120814960586336, 3.0011643029813944, 0.9784708748488228, 1.2514238203850458, 0.9703589804060763, 1.416843983339963, -0.46897897234948444, 0.15372854068168998, 0.0428504107750175, -2.001462002287533, -1.1337554351382497, -1.6771637936713868, -2.5478870581364585, 0.47119585747809717, -0.30616861505323417, -1.1963890109166797, 0.04044374367949453, -0.7311049984046335, 0.11711575782431421, 0.10426909012766551, 0.8970608501354276, -1.962296364536102, 2.237877524259023, 0.5132088583494939, 0.08842066162402158, 0.06672356844640426, 0.06470813651365062, 0.23826041217701158, 0.9878071613375603, 0.859299000009833, 0.6660509951723951, -0.9486817136107089, 2.6921260030317193, -1.6553869838852533, -0.6060864658846089, -1.0833289931292516, 0.5716357190160812, -0.42682158820602506, 0.11900527739783578, -0.5307995322029232, 0.430675351795783, -1.5511552580717913, 0.032047245305696706, 1.2575709655532232, 1.3202998038737719, -0.22060858954457424, 0.28411079700147385, -0.48476220911984513, -0.07880740204594774, 0.27589999715339447, -3.350552357820122, -0.7942493191828129, 0.9990937053832342, -0.42101719323435216, -0.17297095948861932, -0.30833728648909764, 2.0237264348460253, -0.3951591805407199, 0.8870001545659555, 0.6245173710827429, -1.7717865019376298, 1.671086390504131, 0.15442941552470588, 0.08374347464524579, 1.6324069806192625, 1.2482596101559011, 0.4180818163810913, 0.22732530898422196, 0.6564563013088737, -0.1843715308496301, -0.640032126175593, -1.626099064569707, -1.3042622326782176, -0.899817242290389, 1.3380746793700415, -1.5225053120720857, 0.5716292301891005, 0.8350913582496124, 0.22066663139779744, -1.7875074945131821, 0.09505340680009043, 1.519294933227337, -0.057425125151421, -0.6011569776213825, 0.7985075569719939, -1.0203988823879262, 1.4106792979590987, -0.0877993289749468, -1.2432942881364708, 0.5376822763088254, -0.05104548652260154, -0.6385321379984887, 0.6062390007722481, -0.3975558455746153, 1.2269329722541027, -0.6343430405424335, -0.8261701327551745, 0.5547242620270303, 0.22153021794336344, 0.9340184594670112, -0.5406711652476581, -0.47986933104702045, 0.010941616882202673, 1.89055795204877, 1.2061886290075907, -0.22691949964881117, -1.37047708614489, -0.27464163168654077, -1.5604574539368614, 1.226850455953966, 1.1056499327443063, 1.0256257973913063, 0.5220342010205095, -0.659195558314335, 0.2696107366780119, -0.41800440569395886, -1.4612595063210767, -0.7118161537321684, -0.05291595233513516, 0.49972306672146355, -0.7774440903785125, -1.0974849993541016, 0.5108764504942255, -0.9420814584456162, 0.6423769062515604, 0.6770643629009532, 0.10186339495797218, -1.603812392104239, -0.46531144794794355, 0.5170738858721348, 0.018972153559232277, -1.0547147099874243, -1.036553193369824, -0.8312637286197624, 0.8484691005803632, -1.8404560103589351, -0.13656450586577093, -1.270263148080691, 0.6342701965320007, 0.2866588554493784, -0.9781231371697954, 1.2607458719036237, -0.7329872701163707, 0.6630985638231837, 0.7481810387731072, 1.2520679800581067, -1.4228691224730396, -2.284284206829557, -0.48682061063184273, 1.3828232885392666, 1.1472751810484463, 0.22263372961108446, 0.05451118499235583, 1.237540379420743, 1.2830845705718297, 0.10957138450596363, -2.0033586326065924, 1.7291979731917535, -1.3831392634561877, 1.1828715318459362, 0.13352370169087138, 0.7891237132187421, -0.8838501903438717, 1.319204310217849, -0.8631405126156684, 1.8551387891927498, -0.3694260575174895, 1.6630728405635988, -1.4039406166480037, 1.2211902457216013, 0.2639480288189047, -2.6968565238670785, 0.06817870417391031, -1.7331706525795174, -0.7838773481247635, 1.5329237111217122, 0.48800592217753896, 0.10247828172364541, 0.26945290759640256, 0.9722642338666949, 0.228745158353501, 1.5118561389945024, -0.8973653434594528 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] }, { "data": { "x": [ -0.012175034980583989, 0.29794759598063486, 0.5041381003188307, 1.0665639484931024, -0.4737056895203979, 0.38085511435279806, -0.24274296622924624, -0.19765388487571836, -0.5842999709902038, -0.019517329368945024, -0.5606969265065077, 0.044910485203611114, -0.21447898602357734, -0.4941744265784009, 0.9226806238316831, 0.4188911857562415, -0.13481937944613273, -3.3048905935707604, -0.2197370123019107, 0.11566754613517728, -1.178993252456855, -0.2586586187957297, 1.473518086295826, -0.39415888649939446, 0.5395581144231686, 1.4329626128534136, 0.14490391372570116, -0.4007483769979196, 0.3342952336700743, 0.48968404523845294, -0.045025957105677236, 1.0483748687985357, -0.5146827382418395, 0.9328889515119895, -0.7713135753000618, 0.4460518292721393, -0.8140956394134728, 0.07148006737680059, -0.16913435227327503, 0.7962625935969818, 0.8736052821884369, 0.26764642606700645, -0.7090670405117205, 1.3941385575073637, -0.5537149324748281, -0.6252525505617096, 1.9296592662123577, 0.8240327020699542, -0.44540633002554425, 1.6404582588742245, -1.084412230528007, 0.235971510978304, -0.0040445898752509, -1.4454261935992399, 1.830347334980545, 0.14217865923288017, 0.3211179405692478, 0.021041713012508772, -0.029198080000111707, 0.43720567445287317, -1.2066596853358451, -0.7014686165566095, 0.5320776338993813, -0.04566937211240266, 1.6195895008762355, 0.033231734733092794, 0.9044481927503666, -0.9668112281676826, -0.010597213518983607, 1.250794278935047, 0.2285028059415048, -0.8650420955605815, -0.911279819890441, 1.997576426837774, 0.2964110193339446, -2.2892307369991487, 1.0236370932354475, 0.36124206297011363, -0.9840805760193035, -1.4541226189176797, 0.10996826410529587, 0.973844525700083, -1.2524768726239304, 0.35112529846224216, 1.5046206850463755, -1.1504345896026598, -1.306568284949997, 0.6347474685889221, 1.3329264851540308, -0.5697746639464111, -0.2029529258576175, -1.3863744336256085, 1.0508146745045088, -0.3138298376619724, 1.2217754358956021, 0.056297186870514826, 0.5116469314697465, -0.29149192578605243, 0.35519819062125046, -1.6689008832653318, -0.13824640902194718, 0.040814137546181545, -0.4772975531522654, -0.7783754973902667, -1.4785457964955215, 0.2640594939220428, -1.2204781558364068, 1.0599396691553178, -0.012034235706444473, 2.5234572596987532, -0.11145814915357358, -0.9438516079584924, 1.733295493845268, 1.1503464115930708, -0.5438493320118555, 0.8593665849634119, 0.857482108883559, -0.21221969415321268, -0.5235284464936003, 0.1985224510520283, -0.2955175111801914, -0.2400656679427524, 0.42953906763659366, -0.16002278422434865, -0.06358261364501183, -0.32417552781631465, 1.6072906233574573, 1.0499423777662638, -0.3421530926506195, -1.4723791610647419, 1.8293849488882894, -1.2512869396337287, 0.5948942864752638, 0.05138389859327554, 0.42521794114392564, -0.06671573219660704, -0.9863460762273477, 0.5063932527585168, 0.7994374132546331, -0.5492935954497937, 0.5720640221408333, -2.087420560082536, -1.0472829333128786, -1.3002985230335777, -1.0327710968340615, -0.15843963119103785, 0.6341925578825983, 0.6542698783920413, 1.2444020299741594, -0.3418789564564849, 0.13385963554122576, 0.09661725783766434, 0.19468810630884073, -1.0210172481473925, 0.517209148403882, 0.9867924317106277, -1.9443995176613156, 0.4169867958238135, 1.718328008544008, -0.1324778578668459, 0.8277225560444361, 0.10253372686798139, -4.0741685387718425, 0.8579173896808556, -0.49746024741614736, 2.2861256772229592, -1.2655216526728008, 1.5132687554497277, -0.018743203357834522, 0.24540664282664956, 0.6183345333010757, -0.3252273091949595, 0.08458528585043897, -0.6767492953185327, -0.4327270136736399, -0.17852618377499901, -0.7268983164837333, 0.5487277108937472, -1.7451471298116732, -0.23210330559354447, 1.0192340032552563, 0.8092825759218484, -0.26142853558427964, 0.34647251597861, 1.4683908665931236, -1.4224090729206385, -1.7007034546560316, 0.3736610451763355, 0.4107636804584369, -1.501954707867601, 2.5669358968488702, -0.07932843791964456, -0.5992411576673131, -0.3402754275859364, -0.7828680729827787, 0.30616601160995754, 0.07015765978964136, -0.07510131996298416, 0.1570913429000623, 1.242799234762724 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] } ], "kind": "subplots", "layout": { "align": false, "fit": true, "name": "grid", "ncol": 2, "nrow": 1, "sharey": "all" } }, "output_type": "lets_plot_spec", "swing_enabled": true }, "text/html": [ " <div id=\"RuwoDq\" ></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(\"RuwoDq\");\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\":1,\n", "\"sharey\":\"all\",\n", "\"fit\":true,\n", "\"align\":false\n", "},\n", "\"figures\":[{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,1.0,3.0,7.0,8.0,9.0,21.0,20.0,23.0,44.0,54.0,66.0,80.0,71.0,85.0,103.0,76.0,92.0,66.0,51.0,41.0,28.0,22.0,13.0,8.0,3.0,2.0,1.0,1.0],\n", "\"x\":[-3.3879569114892867,-3.1663525746568784,-2.9447482378244696,-2.7231439009920613,-2.501539564159653,-2.279935227327244,-2.058330890494836,-1.8367265536624275,-1.615122216830019,-1.3935178799976105,-1.1719135431652021,-0.9503092063327938,-0.728704869500385,-0.5071005326679767,-0.2854961958355684,-0.06389185900315963,0.1577124778292487,0.379316814661657,0.6009211514940658,0.8225254883264741,1.0441298251588824,1.2657341619912907,1.487338498823699,1.7089428356561083,1.9305471724885166,2.152151509320925,2.3737558461533332,2.5953601829857416,2.81696451981815,3.038568856650559]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"5\"\n", "},{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,5.0,9.0,8.0,9.0,13.0,17.0,22.0,26.0,18.0,20.0,9.0,13.0,5.0,7.0,5.0,4.0,0.0,1.0,2.0],\n", "\"x\":[-4.113277264892719,-3.8815765101388413,-3.649875755384963,-3.4181750006310847,-3.1864742458772066,-2.954773491123328,-2.72307273636945,-2.491371981615572,-2.259671226861694,-2.0279704721078153,-1.7962697173539373,-1.5645689626000592,-1.3328682078461807,-1.1011674530923026,-0.8694666983384245,-0.637765943584546,-0.4060651888306679,-0.1743644340767898,0.057336320677088715,0.2890370754309668,0.5207378301848449,0.752438584938723,0.984139339692601,1.21584009444648,1.447540849200358,1.6792416039542362,1.9109423587081142,2.1426431134619923,2.3743438682158704,2.6060446229697494]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"6\"\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=887e2d76-b663-4785-8845-578a55097cba width=\"100%\" height=\"100%\" style=\"max-width: 900.0px; max-height: 400.0px;\" viewBox=\"0 0 900.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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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", "#pG85IzQ .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=\"pG85IzQ\">\n", " <rect x=\"0.0\" y=\"0.0\" height=\"400.0\" width=\"900.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=\"442.0\" height=\"388.0\" 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", "#pQFQMcG .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", "#pQFQMcG .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", "#pQFQMcG .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", "#pQFQMcG .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pQFQMcG .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", "#pQFQMcG .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", "#pQFQMcG .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", "#pQFQMcG .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", "#df6Vdmb .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", "#pQFQMcG .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", "#pQFQMcG .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", "#df6Vdmb .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", "#pQFQMcG .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", "#pQFQMcG .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", "#df6Vdmb .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", "#df6Vdmb .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", "#df6Vdmb .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=\"pQFQMcG\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"44.219101359446285\" y1=\"0.0\" x2=\"44.219101359446285\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"97.4204154528923\" y1=\"0.0\" x2=\"97.4204154528923\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"150.62172954633832\" y1=\"0.0\" x2=\"150.62172954633832\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"203.82304363978432\" y1=\"0.0\" x2=\"203.82304363978432\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"257.0243577332303\" y1=\"0.0\" x2=\"257.0243577332303\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"310.2256718266763\" y1=\"0.0\" x2=\"310.2256718266763\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"363.4269859201223\" y1=\"0.0\" x2=\"363.4269859201223\" y2=\"342.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(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"389.0581836335954\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"281.7661977412324\" x2=\"389.0581836335954\" y2=\"281.7661977412324\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"221.53239548246484\" x2=\"389.0581836335954\" y2=\"221.53239548246484\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"161.29859322369725\" x2=\"389.0581836335954\" y2=\"161.29859322369725\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"101.06479096492967\" x2=\"389.0581836335954\" y2=\"101.06479096492967\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"40.83098870616209\" x2=\"389.0581836335954\" y2=\"40.83098870616209\" 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(#cJriObB)\" clip-bounds-jfx=\"[rect (25.941816366404606, 0.0), (389.0581836335954, 342.0)]\">\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"359.5840788128685\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"347.79443688457764\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"336.0047949562869\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"324.2151530279961\" y=\"332.96492966118484\" height=\"9.03507033881516\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"312.4255110997054\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"300.6358691714146\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"288.84622724312385\" y=\"275.7428175153557\" height=\"66.25718248464432\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"277.056585314833\" y=\"257.67267683772536\" height=\"84.32732316227464\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"265.26694338654227\" y=\"218.52070536952647\" height=\"123.47929463047353\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"253.4773014582515\" y=\"188.40380424014265\" height=\"153.59619575985735\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"241.68765952996074\" y=\"143.22845254606696\" height=\"198.77154745393304\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"229.89801760166998\" y=\"64.92450960966909\" height=\"277.0754903903309\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"218.1083756733792\" y=\"113.11155141668317\" height=\"228.88844858331683\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"206.31873374508842\" y=\"31.79591836734693\" height=\"310.2040816326531\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"194.5290918167977\" y=\"86.00634040023775\" height=\"255.99365959976225\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"182.7394498885069\" y=\"128.17000198137507\" height=\"213.82999801862493\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"170.94980796021613\" y=\"101.06479096492967\" height=\"240.93520903507033\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"159.16016603192537\" y=\"143.22845254606696\" height=\"198.77154745393304\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"147.37052410363458\" y=\"179.36873390132752\" height=\"162.63126609867248\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"135.58088217534382\" y=\"209.4856350307113\" height=\"132.5143649692887\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"123.79124024705305\" y=\"272.73112740241726\" height=\"69.26887259758274\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"112.00159831876229\" y=\"281.7661977412324\" height=\"60.23380225876758\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"100.21195639047151\" y=\"278.75450762829405\" height=\"63.24549237170595\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"88.42231446218075\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"76.63267253388999\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"64.84303060559921\" y=\"320.91816920943137\" height=\"21.08183079056863\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"53.05338867730845\" y=\"332.96492966118484\" height=\"9.03507033881516\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"41.263746749017685\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"29.474104820726893\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"17.68446289243613\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"cJriObB\">\n", " <rect x=\"25.941816366404606\" y=\"0.0\" width=\"389.0581836335954\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(25.941816366404606 342.0 ) \">\n", " <g transform=\"translate(44.219101359446285 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-3</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(97.4204154528923 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(150.62172954633832 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(203.82304363978432 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(257.0243577332303 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(310.2256718266763 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(363.4269859201223 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>3</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <line x1=\"0.0\" y1=\"0.0\" x2=\"389.0581836335954\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 281.7661977412324 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 221.53239548246484 ) \">\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>40</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 161.29859322369725 ) \">\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>60</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 101.06479096492967 ) \">\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>80</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 40.83098870616209 ) \">\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>100</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(241.4709081832023 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"df6Vdmb\">\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=\"442.0\" height=\"388.0\" x=\"452.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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#pGaMIm8 .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pGaMIm8 .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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#dBVWwuq .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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#dBVWwuq .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", "#pGaMIm8 .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", "#pGaMIm8 .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", "#dBVWwuq .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", "#dBVWwuq .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", "#dBVWwuq .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=\"pGaMIm8\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"29.343177000218134\" y1=\"0.0\" x2=\"29.343177000218134\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"131.10928424327994\" y1=\"0.0\" x2=\"131.10928424327994\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"232.87539148634178\" y1=\"0.0\" x2=\"232.87539148634178\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"334.6414987294036\" y1=\"0.0\" x2=\"334.6414987294036\" y2=\"342.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(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"389.0581836335954\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"281.7661977412324\" x2=\"389.0581836335954\" y2=\"281.7661977412324\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"221.53239548246484\" x2=\"389.0581836335954\" y2=\"221.53239548246484\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"161.29859322369725\" x2=\"389.0581836335954\" y2=\"161.29859322369725\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"101.06479096492967\" x2=\"389.0581836335954\" y2=\"101.06479096492967\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"40.83098870616209\" x2=\"389.0581836335954\" y2=\"40.83098870616209\" 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(#cMG2CSe)\" clip-bounds-jfx=\"[rect (25.941816366404606, 0.0), (389.0581836335954, 342.0)]\">\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"359.5840788128685\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"347.79443688457764\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"336.0047949562869\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"324.21515302799617\" y=\"329.9532395482465\" height=\"12.046760451753528\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"312.4255110997054\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"300.6358691714146\" y=\"320.91816920943137\" height=\"21.08183079056863\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"288.84622724312385\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"277.05658531483306\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"265.26694338654227\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"253.47730145825153\" y=\"281.7661977412324\" height=\"60.23380225876758\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"241.68765952996077\" y=\"287.78957796710915\" height=\"54.21042203289085\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"229.89801760167\" y=\"263.69605706360215\" height=\"78.30394293639785\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"218.10837567337921\" y=\"275.7428175153557\" height=\"66.25718248464432\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"206.31873374508845\" y=\"290.8012680800475\" height=\"51.19873191995248\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"194.5290918167977\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"182.7394498885069\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"170.94980796021616\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"159.16016603192537\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"147.37052410363458\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"11.789641928290791\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"135.58088217534385\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"123.79124024705308\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"112.00159831876229\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"100.21195639047153\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"88.42231446218076\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"76.63267253389\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"64.84303060559921\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"53.05338867730845\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"41.263746749017685\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"29.47410482072692\" y=\"342.0\" height=\"0.1\" width=\"11.789641928290763\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"17.684462892436187\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"11.789641928290735\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"cMG2CSe\">\n", " <rect x=\"25.941816366404606\" y=\"0.0\" width=\"389.0581836335954\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(25.941816366404606 342.0 ) \">\n", " <g transform=\"translate(29.343177000218134 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-4</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(131.10928424327994 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(232.87539148634178 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(334.6414987294036 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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", " <line x1=\"0.0\" y1=\"0.0\" x2=\"389.0581836335954\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 281.7661977412324 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 221.53239548246484 ) \">\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>40</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 161.29859322369725 ) \">\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>60</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 101.06479096492967 ) \">\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>80</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 40.83098870616209 ) \">\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>100</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(241.4709081832023 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"dBVWwuq\">\n", " </g>\n", " </svg>\n", "</svg>\n", " <script>document.getElementById(\"887e2d76-b663-4785-8845-578a55097cba\").style.display = \"none\";</script>" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gggrid(listOf(p1, p2), sharey = true)" ] }, { "cell_type": "markdown", "id": "informed-triumph", "metadata": {}, "source": [ "#### 3. Share Scale Limits of both, X and Y-axis" ] }, { "cell_type": "code", "execution_count": 7, "id": "surgical-clone", "metadata": { "execution": { "iopub.execute_input": "2025-12-03T16:06:03.694805Z", "iopub.status.busy": "2025-12-03T16:06:03.694450Z", "iopub.status.idle": "2025-12-03T16:06:03.752824Z", "shell.execute_reply": "2025-12-03T16:06:03.752899Z" } }, "outputs": [ { "data": { "application/plot+json": { "apply_color_scheme": true, "output": { "figures": [ { "data": { "x": [ 1.7687943677666822, 0.10628211826095219, 1.7204367528361415, -0.037534100873246996, -0.7556292895100587, -0.9951161662703086, 1.052027068066767, -0.6497562324361997, -0.47969604178646064, 1.3195412359422278, 0.6471885375454148, -0.6145630713451975, 0.21099118887163767, 0.83061591557465, 0.4890950549463388, 1.3037914453654387, 0.9791647128033308, -1.304372469120525, -0.6739853262611326, -0.6302272555314844, -0.06567293517548581, 0.16992439572141083, 0.4985272158114654, 0.3744336799283743, 0.8193988829709237, 2.429780509168998, 0.35327583135456675, 0.34645985018170156, 0.564510581840672, 1.1079917758816, -2.20104878328904, 1.9695418127098692, -0.2364138746138622, -0.9260104971066431, -0.23550283017719809, -0.01921041177944297, -0.8623579647574651, -0.04184743225913421, -0.34086213093508905, 0.6989387291958685, -0.21280602574129706, -1.5229462883897182, -1.114669649931767, -0.7246596018824761, -0.9795078835494803, 0.43048299121850986, 0.5860946664293265, 0.411783051565248, 2.439598419520245, -0.30589367627540626, -0.03625210379296746, -0.01523713036011583, 0.6748592497714744, 0.449083044780863, 0.7510927431339195, -0.209489786045136, -0.7633801278093398, -0.37577099825301746, 0.14629225501397528, -0.03366700906389058, -0.4992531374770084, 0.5161937494021966, 0.5548153186535513, -0.5079465545590672, -1.021287990885576, 1.8600533054767678, -1.3941301234610528, -0.5876750570891159, 0.27922173427881986, -1.1260343908468196, -1.577245894169239, 1.6868507959809638, -0.34315520906864366, 0.8756673838511702, -0.013202904846600071, 0.1663109595197368, 0.25926468816943765, 0.6214371542812759, 0.40713450838998066, 0.05660059883189231, -0.5927007106253308, 0.2144892451035325, 0.6705129011671771, -0.4192229557817511, -0.13399160735362278, -1.5234992785571666, -0.5760061861059607, 2.2972205355496347, 2.162580230059769, 1.0480461096358216, 1.0609063932362777, -1.3878584214688807, 0.6502887453513964, -1.494802096457127, 0.698933409561582, 1.0279802603891166, -0.7139967016700057, -0.7226340957160897, 0.2725587805228503, -0.10652537707272984, -0.7700645448834437, 0.4613209775995895, 0.4558764090361004, 1.2745381647988683, 1.3664038748711067, -0.5964545000969897, 0.8425859802512796, -1.1060675506974833, -0.11636201252429614, -1.130255335904117, 0.14075812150619382, 0.8628566536023579, 1.6070249894350475, 0.5703388732422935, 1.0595189144315256, -1.8499589529892804, 0.9362860024327014, -0.1535770994097404, 2.0405377240487037, 1.0763448029144767, 0.22485134726888026, 1.7007898970425377, -0.28005757238379236, 0.9570609994345478, -0.6185873758407429, -1.2014680459389429, -0.9947057654083926, -0.20067770025217516, 0.2571029176665626, -0.883927351830682, 0.12808741327939197, 0.5992307710873707, 0.12008433098103098, -0.08485212420192703, 0.31237233238563655, 0.24242726591735153, -0.06390427097507555, -1.2761512215831583, 1.4429536418920819, 1.1118445398381875, 0.04105183955117125, 0.4456661177149582, 0.7128363886693093, 1.3421394998417036, 1.4421668576965316, 0.516055009356753, -1.3147258919070557, -1.7788031740809092, -0.3713653427805966, 1.2091311389736596, 0.35425225249854947, 0.6107370879132182, -0.1414589368742329, -0.8857769913086667, 1.6322316964575883, 0.6699997627240689, -0.21740801413146052, -0.6431289330781157, -0.15060313947856438, 1.2255641097483512, -0.26336216578687954, -1.1288246390012904, 0.08564293390175488, 0.1695508442940134, -0.9549143317713982, -0.381899664359382, -0.2697790924907474, 1.1500248968433444, 0.797187566115551, -2.2555386162293702, 1.5271162429033516, -1.4448616414952375, 0.5528442713502834, 0.8665758998228781, 0.047531454194312754, -0.3979461455918577, -0.9196333950121731, 0.7723500421338588, -0.7005620370822323, -0.57814083100412, -0.3958371590421287, -0.378819582767001, 1.2092623243348053, 0.7802751224122251, 0.34213111783684963, 0.061883850451380215, 1.742883074607315, -0.07056892738486359, 1.8711704286853277, 0.5241690429678856, 0.3716901674784058, -1.125930502067472, 0.6342731753445917, 0.9179042710608684, -0.7558901282490996, 0.5333214869552843, -0.8367682885827396, -0.21003644242206773, 0.06430918371432055, -0.7963578622290897, -0.10322234060563841, -0.10729646196266507, 1.3955424790700066, -0.2795516756720527, -0.5949838356584947, -0.17391777208262518, 0.7781778683010006, 0.4838407983407719, -0.2907333002772144, 0.6142059106061174, 0.7096436983664091, -0.4186179449490197, 0.8897525193469439, 0.6755331598619769, -0.6003620457879268, -0.4113401114570434, -0.2067417201249644, 0.0838256625993102, -0.5203097510627356, -0.2601960272156041, -0.8104079314223315, 0.16436395973534848, -1.0663788895473252, 0.1808957134519183, 0.5305625775777306, 1.6829284627055878, -0.5557491767431979, -1.0634321486292087, -1.2666533155069772, 0.32906296025494386, -0.5633267393367979, 0.262974032081511, 0.1232334861376412, 0.8204655556799958, 1.0879394118426926, 0.29841595257271913, -0.9885950409767389, -0.5929506072429108, -0.662398228279716, 0.46830285742092603, -0.9790273486998664, -0.7895347575387687, -0.4917516072015227, -0.08993262666452023, 2.596758541747095, -0.628648848923298, 0.682907578105213, 0.2514053661935212, 0.9820076737786156, -0.5352359198270071, 0.5596172330947177, 0.18958298990899208, 0.5929605884828225, -0.25127027189474943, 1.2320591242109102, -0.024646567090903636, -0.5816988690813153, 0.0844867434164911, 1.3340639025541705, -0.003709199153535868, 0.46927429464352777, 2.9183293813973723, 0.7437205396027897, -0.6358574634101807, 0.5400566126041787, 0.6617015720199636, -0.8754172749422224, 0.25872922450704705, -0.7230102683126051, -0.5172977863752761, -1.1052377041941381, -0.11503518858438899, -0.8859810401206246, 0.7647843417089121, 0.2977995676256951, -0.3668763992569928, -0.36234436143127996, 0.4404508071548277, -0.6944932923483026, 0.8015861094938902, 0.007521073825629, 0.23015007538843069, 0.9908114041217525, 0.5531681245624889, 0.6860044518648638, -0.4560939999214513, -1.482165095663803, -0.6156090453308964, 0.6617221260493498, -1.051582086895677, -1.1909700536307433, -0.6951258158872021, -0.49201389186246913, 0.5240601552175225, 1.4598975106105863, 0.47819134918690737, 0.060417648691056716, 0.21641450744320817, -1.397164062958668, -2.5207387460245303, 0.21049661098308772, 0.44953292924469673, -0.8293406849588575, -0.6674502122548439, -0.49849852185190413, 0.24944981770908597, -1.160232872868664, 1.2916505588770553, 0.7714438084049878, -1.1140124457870084, 0.34182015837346347, 0.3669813662062043, -0.002820215234065526, 1.6812042084067185, -1.866752474241616, 0.8973406703714665, 0.08399261661618622, 0.19277683039008797, 0.7695000777467759, 0.6474230039826419, -0.1023323713132523, -0.4173400762248842, -0.37706761969258373, -0.715289925505138, 0.2244053211859935, -1.611854380941278, -0.8794984875527906, -0.7904687371739758, -1.1680049774312382, 1.788652825082633, -2.2661175849781885, 0.7411582967255195, -0.3468277404861569, 0.8689599643571382, -1.879646919135953, -1.5141328573173538, -0.1858457929582742, 0.6245382840433624, -1.1750710219563483, 0.4281771969367571, 0.6122212268104209, -1.9126648763488732, -0.8159054313718033, 1.1147580162818758, 0.8066584957152039, -0.9262691798221463, -0.6640849676575586, 1.195291706969711, -1.9778285003658291, 0.5032955371468468, -0.9892979916891699, 1.0889515268329102, -0.579270195598099, -1.195131203654272, 1.687320701115782, 0.15360700295645113, -1.097998522861697, -0.06874923792658369, -0.6084846028517787, 1.8377333268641671, 0.6270565214971554, 0.613502020517991, 0.4874657702591926, -2.527198391757681, -1.5825429493833625, -1.042768564765132, -1.748483604834765, -0.15401136442471855, 0.2172442670321591, 0.9123990549337705, -0.045472803365322965, 1.490397051133071, 1.4948161074248465, -1.127991510268807, 1.1944935975691107, 1.2713363151777186, -0.017202013877178252, -0.13360362731757017, 1.0808013503578553, 1.3050685158894921, 0.018111977145865585, 1.219245048977367, -1.1382408824035277, -0.5770634328394819, 1.2778088136336874, 1.3940155696045688, -1.0859707521259725, 0.05725116489287355, 0.5632858581279874, -0.9809740904817519, 0.3158842259801124, -0.2378251362273881, 0.17796330976482383, -0.2458051916960259, 0.2046967109150976, -0.8840205511357346, -0.09909521750374449, -1.70417570352714, 0.851309656835214, 0.7211240841444065, -0.885830780225618, 0.8146116303728623, 0.4567105643188149, -0.8937845981722212, -0.5180043437191163, -0.8949918184734598, -0.45742698798621884, 2.0210092777288655, 1.7407477909200215, -0.2625413121364725, 0.07563509844789362, 0.5563065121842512, -0.07144690099476853, 0.8954061059962835, -2.571989791091301, 0.918544928811703, -1.2850149567885354, 0.13368583741335258, -0.37787515136607297, 0.0030086998478405596, -0.17254346636623943, 1.2108466855693627, -0.664822744931719, 0.07593726768739008, 1.0470533404975868, 1.1287523224718319, -1.5438745860196132, -1.1790340188368345, -2.299672754410145, 1.0198011710870574, -0.019404870584150715, -0.49949110648973993, -0.0589036922935962, 0.6286546779398563, 1.459419051904404, 0.8526953432051373, 0.6661426434983827, -0.5150825884260762, 2.1183980144227808, -0.2458434065980494, 0.10599190141821684, -0.4065058922779037, 0.5916760973376979, -1.9236371555442888, -0.5421684976921096, 1.0518975417720011, 0.21971183881774903, 0.43247090064502264, -0.1502773445675138, 1.526798426072779, 1.8288204899301639, -1.8618349847533102, -2.0919818104035377, -0.7716134224331724, -1.7408998005851453, 2.136876913494888, 0.4559433273643078, 1.3604923410171677, 0.054227328297997174, -1.3808697575138646, -0.3639825311241219, 0.055966007399287365, -2.7292769507436705, 0.7038733389745608, -1.1697702185595809, -1.9417541318343463, 2.0670987527951965, -0.6325495516049673, -0.7157335328391775, -0.9578766343627506, 1.549704176565892, 0.8531932641906019, -0.5349983855138715, -0.9640852042332527, 0.46775067636278184, -2.1389661047922126, -0.6328477512225166, 0.5256091666809566, 0.2864163007458042, 0.6981923485184115, 1.0521704825249567, -0.10938765172918262, -1.784560243504809, -0.7676374065516406, -1.0373745417933615, -0.2706521248876184, 0.33527096803866147, 0.047286619643391106, 0.23541666105027348, 1.33452807848067, -1.89730026523029, -1.8425563689254174, 0.43845185617349924, 0.0331278967321578, 0.9831928734996545, 0.33521750631797204, 1.3731423233050832, 2.2202381834564187, -0.18323803356208052, 0.012179045892745382, 0.28049446746718826, 0.9004372155345585, -0.5713205967738314, -0.5198042725869185, 0.7989302303403246, -0.6667354000595791, 0.15625402187843146, -2.1208179015850295, -1.5223687842178768, -1.8033523920571315, -0.7627821714513905, 0.6089899673423871, -0.5347783330106071, 0.4368145318960496, 1.4673573622646428, -0.9817834551657011, -0.5832679124737555, -1.3020107962275416, 0.7377710936243188, 2.197811295701506, -2.430639860337569, 1.6796336472932694, -0.010054855207307796, 0.7519682599658991, -0.8876996364251732, -0.3023325288016984, -0.5272719502734191, 0.9779065704338524, -0.08602215165207698, -0.09255129981596599, 1.6295590919091514, -0.9920202273840795, -1.7520549855245477, -0.4021432935804096, -1.263441418110046, 0.7258723981333883, 0.5533275687777933, -0.2901886511501614, -0.4344583897078483, -1.3565804587844976, -2.562617231127234, -1.3235529005802005, 0.0587485765260092, 0.10230217784666464, 0.9094120732184552, 0.2578641267613546, -0.5589508150866048, 0.3253269549992064, 0.11626097303683874, 0.9704212482203466, -1.3951388200697916, 1.419142118729542, 0.6488514459953479, 0.7617982417210711, 1.0036023898475461, 0.12564467420270892, 0.9535184322259238, -0.22688228907356736, 0.15341374258410073, 0.06420769548658052, -0.6151873801579946, 0.60094173160055, 0.1868026706084533, 1.068306057193773, -0.6012386775611135, 0.012632812086998069, -1.6216715545947054, 0.238153072030393, -0.33459420411498836, 0.30348074420805554, -0.05922287072652768, -0.022563421676623754, 0.32207622578054684, -0.03007718522617802, -0.39366170620553265, 0.9071577365162239, 0.40637035377753544, 0.4263610805969633, 0.1918003932548992, 0.6371439538289745, -0.673627091429265, 0.6774877704945061, 0.8001437193782343, 0.8194599272420812, -0.48288943218728725, 0.7906730819215302, 0.8720606717064744, 1.3674043748409335, -0.17116634630984354, -1.154450954935009, 0.4007262308813416, 0.9762252875928743, -0.5264007838829963, 0.15877295994727117, -0.9389924272981021, -0.7525982812977172, 0.345872183773896, -1.3069787267877795, 0.09510761323632526, -0.5459658832905917, -0.39035624005146696, 0.5422650091377272, 0.1834884201204868, 1.122991434042094, 0.8806420550540522, 1.7349471997361756, -1.1833241968070871, 1.449773246435611, -0.33927572981040827, -0.828258434177189, -1.5113380865184578, 0.6387573466146391, 1.7000149167888696, -0.3378914282704931, 1.1496572083796348, 1.0035767733095822, 0.2545232451156703, 0.4068982349793815, -0.051019673427518696, 0.5532952439013222, -0.9420606010378074, -1.7114081728304515, -0.3850762450380494, -0.03632324793400444, -0.7913736193566393, -0.0669999503622, 0.8997689494448327, 0.6934393584428097, 0.017241074164844872, -1.201918562524336, -0.7676727172077829, -0.0571884635787579, 0.2340999278063115, 0.5832371426733749, -2.090238390445779, 0.4244221272525574, 0.13888658731209721, 0.5277036888454426, -2.0854883454916577, 0.18057528609203408, -0.22058591693932486, 0.49094198252596516, 0.8385472519105718, 1.5386169816923623, 0.49339498240216634, 1.4144237778105733, 1.4146073913800385, -2.3069061398371336, -0.41324379436680675, -0.9732199985401531, 0.970243367411577, 0.16444828303179287, 0.48350997314544, -1.2043310564021568, -0.795856301846838, -0.19138232345389602, -1.9082410564922943, 1.0427901818466618, -0.431808364625298, -0.5766898986085766, 0.516878855600311, -0.43248578176612423, 1.452465192743121, 0.7340396837811355, 1.4539604597761167, 1.1048123356957973, -0.34197238218579923, -0.4939038834814649, -0.3574841779288253, 2.036442699063657, -0.09490092384150058, 0.9773586504588531, -2.4817191581957676, 0.3046928426214744, 0.8040172805331882, 0.7033717800876261, -0.9930438448338357, 1.451103561793668, -0.584446005927642, -1.2319869530766894, -0.6461650944997451, 0.1241275752716626, -0.06221895677451561, -1.1819495592943652, -0.08787293684036238, 0.04040240650074717, -0.3319472629491687, 1.061108528166056, -0.6767588532655658, -0.3864592925642441, 0.43521816730448454, -0.9592346862118356, -0.4084423488913367, 0.00833445901624529, -1.6415213247808098, 0.9868815642879233, 0.8591640464828046, 0.02484326589784799, -1.2950222637350652, 1.795985132183596, -0.9004373104896848, 0.7229194881908513, 0.7347107263413138, -1.1964936115755596, 0.44243482141730595, 1.4425076074878447, -0.6747030610116889, -0.21287403794020776, 0.1706685521576756, -0.5149075469568986, -0.5389120747483556, 0.4372240548027045, 0.22480572698122206, -0.8811685086896246, -0.18468217950889323, 0.4183224308385702, -0.5103847474942486, 1.2898845308439855, 1.6867352160402012, 0.920216551617634, -0.2676381422038019, -0.5867716218426906, -0.6573833785650687, -2.3601470283192687, -0.6768292002206808, 0.16893473133606401, -0.7643910653622639, -1.259084130090738, 0.9911375544598806, 0.7035284138099055, 0.3492889436591974, -0.00232916700286711, 1.9862684593071631, 0.5204820657051757, -0.8852803907402569, 0.6317103635323014, 0.914807942693685, 0.40048354406754944, -0.5575354753952351, -0.33359100941756825, 0.45408533764239967, -0.7707083271955254, 0.24215156145434416, -0.3602154843335973, -0.19186913436058747, -1.0363219846107903, -0.12541895071315137, 1.9761632449754003, 0.9637677685902305, 0.6399515273003324, 0.6782694626162229, -0.7305354337010574, 1.250746542271697, 0.7805366318718967, -0.4118688630899424, -2.710092667107304, 0.5384450638797866, -0.5026422086915039, -1.1966740638668951, 1.2428885077712832, 0.26631420191092553, 0.8421746262945572, -0.6241509634843481, -1.2971618985427689, -0.9539821793643769, 0.6239795242208513, 0.736740589130596, -0.37616505198418276, 0.6505849166313841, 0.32740069059505283, 1.0250820840520147, 0.027983475799278568, -0.9146851311168257, -0.16758005254860595, -1.8706132825660573, 0.2784093568724547, 0.31376410174761854, -0.11858442300306582, 0.002174025360862421, -0.38200809495350124, -0.9842844817178565, -1.1419125140208897, -2.2786403692472894, -0.22093281380995072, -0.26106399539991054, -0.07272540661367781, -0.4292647998092736, -0.6756356042058043, 0.5846952390461819, 0.32206396268395115, 0.8538766922766244, -0.14328642799407207, 0.24496990275536756, -0.9897911694681063, -0.5404176775797812, -2.9899080891713696, 0.37030557937415576, 0.5870159739951781, 0.11139189480876123, -0.8868665127452928, -1.2521165276202564, -0.21336663916912618, 0.10788346837585401, -1.2498705652277644, 2.0815833589316486, 0.3332230691285075, -0.7308024688591107, 1.49977448007609, 0.35244214092751647, 0.13263766963463325, 0.7032528660115549, -0.224058118796799, -0.012948820917694722, 1.1688911024745683, -0.10007767017570952, 0.3503653929366729, -1.1566898566102717, 0.26120814960586336, 3.0011643029813944, 0.9784708748488228, 1.2514238203850458, 0.9703589804060763, 1.416843983339963, -0.46897897234948444, 0.15372854068168998, 0.0428504107750175, -2.001462002287533, -1.1337554351382497, -1.6771637936713868, -2.5478870581364585, 0.47119585747809717, -0.30616861505323417, -1.1963890109166797, 0.04044374367949453, -0.7311049984046335, 0.11711575782431421, 0.10426909012766551, 0.8970608501354276, -1.962296364536102, 2.237877524259023, 0.5132088583494939, 0.08842066162402158, 0.06672356844640426, 0.06470813651365062, 0.23826041217701158, 0.9878071613375603, 0.859299000009833, 0.6660509951723951, -0.9486817136107089, 2.6921260030317193, -1.6553869838852533, -0.6060864658846089, -1.0833289931292516, 0.5716357190160812, -0.42682158820602506, 0.11900527739783578, -0.5307995322029232, 0.430675351795783, -1.5511552580717913, 0.032047245305696706, 1.2575709655532232, 1.3202998038737719, -0.22060858954457424, 0.28411079700147385, -0.48476220911984513, -0.07880740204594774, 0.27589999715339447, -3.350552357820122, -0.7942493191828129, 0.9990937053832342, -0.42101719323435216, -0.17297095948861932, -0.30833728648909764, 2.0237264348460253, -0.3951591805407199, 0.8870001545659555, 0.6245173710827429, -1.7717865019376298, 1.671086390504131, 0.15442941552470588, 0.08374347464524579, 1.6324069806192625, 1.2482596101559011, 0.4180818163810913, 0.22732530898422196, 0.6564563013088737, -0.1843715308496301, -0.640032126175593, -1.626099064569707, -1.3042622326782176, -0.899817242290389, 1.3380746793700415, -1.5225053120720857, 0.5716292301891005, 0.8350913582496124, 0.22066663139779744, -1.7875074945131821, 0.09505340680009043, 1.519294933227337, -0.057425125151421, -0.6011569776213825, 0.7985075569719939, -1.0203988823879262, 1.4106792979590987, -0.0877993289749468, -1.2432942881364708, 0.5376822763088254, -0.05104548652260154, -0.6385321379984887, 0.6062390007722481, -0.3975558455746153, 1.2269329722541027, -0.6343430405424335, -0.8261701327551745, 0.5547242620270303, 0.22153021794336344, 0.9340184594670112, -0.5406711652476581, -0.47986933104702045, 0.010941616882202673, 1.89055795204877, 1.2061886290075907, -0.22691949964881117, -1.37047708614489, -0.27464163168654077, -1.5604574539368614, 1.226850455953966, 1.1056499327443063, 1.0256257973913063, 0.5220342010205095, -0.659195558314335, 0.2696107366780119, -0.41800440569395886, -1.4612595063210767, -0.7118161537321684, -0.05291595233513516, 0.49972306672146355, -0.7774440903785125, -1.0974849993541016, 0.5108764504942255, -0.9420814584456162, 0.6423769062515604, 0.6770643629009532, 0.10186339495797218, -1.603812392104239, -0.46531144794794355, 0.5170738858721348, 0.018972153559232277, -1.0547147099874243, -1.036553193369824, -0.8312637286197624, 0.8484691005803632, -1.8404560103589351, -0.13656450586577093, -1.270263148080691, 0.6342701965320007, 0.2866588554493784, -0.9781231371697954, 1.2607458719036237, -0.7329872701163707, 0.6630985638231837, 0.7481810387731072, 1.2520679800581067, -1.4228691224730396, -2.284284206829557, -0.48682061063184273, 1.3828232885392666, 1.1472751810484463, 0.22263372961108446, 0.05451118499235583, 1.237540379420743, 1.2830845705718297, 0.10957138450596363, -2.0033586326065924, 1.7291979731917535, -1.3831392634561877, 1.1828715318459362, 0.13352370169087138, 0.7891237132187421, -0.8838501903438717, 1.319204310217849, -0.8631405126156684, 1.8551387891927498, -0.3694260575174895, 1.6630728405635988, -1.4039406166480037, 1.2211902457216013, 0.2639480288189047, -2.6968565238670785, 0.06817870417391031, -1.7331706525795174, -0.7838773481247635, 1.5329237111217122, 0.48800592217753896, 0.10247828172364541, 0.26945290759640256, 0.9722642338666949, 0.228745158353501, 1.5118561389945024, -0.8973653434594528 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] }, { "data": { "x": [ -0.012175034980583989, 0.29794759598063486, 0.5041381003188307, 1.0665639484931024, -0.4737056895203979, 0.38085511435279806, -0.24274296622924624, -0.19765388487571836, -0.5842999709902038, -0.019517329368945024, -0.5606969265065077, 0.044910485203611114, -0.21447898602357734, -0.4941744265784009, 0.9226806238316831, 0.4188911857562415, -0.13481937944613273, -3.3048905935707604, -0.2197370123019107, 0.11566754613517728, -1.178993252456855, -0.2586586187957297, 1.473518086295826, -0.39415888649939446, 0.5395581144231686, 1.4329626128534136, 0.14490391372570116, -0.4007483769979196, 0.3342952336700743, 0.48968404523845294, -0.045025957105677236, 1.0483748687985357, -0.5146827382418395, 0.9328889515119895, -0.7713135753000618, 0.4460518292721393, -0.8140956394134728, 0.07148006737680059, -0.16913435227327503, 0.7962625935969818, 0.8736052821884369, 0.26764642606700645, -0.7090670405117205, 1.3941385575073637, -0.5537149324748281, -0.6252525505617096, 1.9296592662123577, 0.8240327020699542, -0.44540633002554425, 1.6404582588742245, -1.084412230528007, 0.235971510978304, -0.0040445898752509, -1.4454261935992399, 1.830347334980545, 0.14217865923288017, 0.3211179405692478, 0.021041713012508772, -0.029198080000111707, 0.43720567445287317, -1.2066596853358451, -0.7014686165566095, 0.5320776338993813, -0.04566937211240266, 1.6195895008762355, 0.033231734733092794, 0.9044481927503666, -0.9668112281676826, -0.010597213518983607, 1.250794278935047, 0.2285028059415048, -0.8650420955605815, -0.911279819890441, 1.997576426837774, 0.2964110193339446, -2.2892307369991487, 1.0236370932354475, 0.36124206297011363, -0.9840805760193035, -1.4541226189176797, 0.10996826410529587, 0.973844525700083, -1.2524768726239304, 0.35112529846224216, 1.5046206850463755, -1.1504345896026598, -1.306568284949997, 0.6347474685889221, 1.3329264851540308, -0.5697746639464111, -0.2029529258576175, -1.3863744336256085, 1.0508146745045088, -0.3138298376619724, 1.2217754358956021, 0.056297186870514826, 0.5116469314697465, -0.29149192578605243, 0.35519819062125046, -1.6689008832653318, -0.13824640902194718, 0.040814137546181545, -0.4772975531522654, -0.7783754973902667, -1.4785457964955215, 0.2640594939220428, -1.2204781558364068, 1.0599396691553178, -0.012034235706444473, 2.5234572596987532, -0.11145814915357358, -0.9438516079584924, 1.733295493845268, 1.1503464115930708, -0.5438493320118555, 0.8593665849634119, 0.857482108883559, -0.21221969415321268, -0.5235284464936003, 0.1985224510520283, -0.2955175111801914, -0.2400656679427524, 0.42953906763659366, -0.16002278422434865, -0.06358261364501183, -0.32417552781631465, 1.6072906233574573, 1.0499423777662638, -0.3421530926506195, -1.4723791610647419, 1.8293849488882894, -1.2512869396337287, 0.5948942864752638, 0.05138389859327554, 0.42521794114392564, -0.06671573219660704, -0.9863460762273477, 0.5063932527585168, 0.7994374132546331, -0.5492935954497937, 0.5720640221408333, -2.087420560082536, -1.0472829333128786, -1.3002985230335777, -1.0327710968340615, -0.15843963119103785, 0.6341925578825983, 0.6542698783920413, 1.2444020299741594, -0.3418789564564849, 0.13385963554122576, 0.09661725783766434, 0.19468810630884073, -1.0210172481473925, 0.517209148403882, 0.9867924317106277, -1.9443995176613156, 0.4169867958238135, 1.718328008544008, -0.1324778578668459, 0.8277225560444361, 0.10253372686798139, -4.0741685387718425, 0.8579173896808556, -0.49746024741614736, 2.2861256772229592, -1.2655216526728008, 1.5132687554497277, -0.018743203357834522, 0.24540664282664956, 0.6183345333010757, -0.3252273091949595, 0.08458528585043897, -0.6767492953185327, -0.4327270136736399, -0.17852618377499901, -0.7268983164837333, 0.5487277108937472, -1.7451471298116732, -0.23210330559354447, 1.0192340032552563, 0.8092825759218484, -0.26142853558427964, 0.34647251597861, 1.4683908665931236, -1.4224090729206385, -1.7007034546560316, 0.3736610451763355, 0.4107636804584369, -1.501954707867601, 2.5669358968488702, -0.07932843791964456, -0.5992411576673131, -0.3402754275859364, -0.7828680729827787, 0.30616601160995754, 0.07015765978964136, -0.07510131996298416, 0.1570913429000623, 1.242799234762724 ] }, "data_meta": { "series_annotations": [ { "column": "x", "type": "float" } ] }, "kind": "plot", "layers": [ { "geom": "histogram", "mapping": {}, "position": "stack", "stat": "bin" } ], "mapping": { "x": "x" }, "scales": [] } ], "kind": "subplots", "layout": { "align": false, "fit": true, "name": "grid", "ncol": 2, "nrow": 1, "sharex": "all", "sharey": "all" } }, "output_type": "lets_plot_spec", "swing_enabled": true }, "text/html": [ " <div id=\"jcsWYh\" ></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(\"jcsWYh\");\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\":1,\n", "\"sharex\":\"all\",\n", "\"sharey\":\"all\",\n", "\"fit\":true,\n", "\"align\":false\n", "},\n", "\"figures\":[{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,1.0,3.0,7.0,8.0,9.0,21.0,20.0,23.0,44.0,54.0,66.0,80.0,71.0,85.0,103.0,76.0,92.0,66.0,51.0,41.0,28.0,22.0,13.0,8.0,3.0,2.0,1.0,1.0],\n", "\"x\":[-3.3879569114892867,-3.1663525746568784,-2.9447482378244696,-2.7231439009920613,-2.501539564159653,-2.279935227327244,-2.058330890494836,-1.8367265536624275,-1.615122216830019,-1.3935178799976105,-1.1719135431652021,-0.9503092063327938,-0.728704869500385,-0.5071005326679767,-0.2854961958355684,-0.06389185900315963,0.1577124778292487,0.379316814661657,0.6009211514940658,0.8225254883264741,1.0441298251588824,1.2657341619912907,1.487338498823699,1.7089428356561083,1.9305471724885166,2.152151509320925,2.3737558461533332,2.5953601829857416,2.81696451981815,3.038568856650559]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"9\"\n", "},{\n", "\"mapping\":{\n", "\"x\":\"x\"\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"bin\",\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"..count..\":[1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,5.0,9.0,8.0,9.0,13.0,17.0,22.0,26.0,18.0,20.0,9.0,13.0,5.0,7.0,5.0,4.0,0.0,1.0,2.0],\n", "\"x\":[-4.113277264892719,-3.8815765101388413,-3.649875755384963,-3.4181750006310847,-3.1864742458772066,-2.954773491123328,-2.72307273636945,-2.491371981615572,-2.259671226861694,-2.0279704721078153,-1.7962697173539373,-1.5645689626000592,-1.3328682078461807,-1.1011674530923026,-0.8694666983384245,-0.637765943584546,-0.4060651888306679,-0.1743644340767898,0.057336320677088715,0.2890370754309668,0.5207378301848449,0.752438584938723,0.984139339692601,1.21584009444648,1.447540849200358,1.6792416039542362,1.9109423587081142,2.1426431134619923,2.3743438682158704,2.6060446229697494]\n", "}\n", "}],\n", "\"data_meta\":{\n", "\"series_annotations\":[{\n", "\"type\":\"float\",\n", "\"column\":\"x\"\n", "}]\n", "},\n", "\"spec_id\":\"10\"\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=3190db14-2854-47ce-89b3-3fe7c4983c05 width=\"100%\" height=\"100%\" style=\"max-width: 900.0px; max-height: 400.0px;\" viewBox=\"0 0 900.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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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", "#pUS5nKe .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=\"pUS5nKe\">\n", " <rect x=\"0.0\" y=\"0.0\" height=\"400.0\" width=\"900.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=\"442.0\" height=\"388.0\" 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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#p7HMEK7 .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#p7HMEK7 .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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#djmh7Ry .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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#djmh7Ry .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", "#p7HMEK7 .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", "#p7HMEK7 .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", "#djmh7Ry .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", "#djmh7Ry .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", "#djmh7Ry .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=\"p7HMEK7\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"42.99515268490347\" y1=\"0.0\" x2=\"42.99515268490347\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"130.77604879567403\" y1=\"0.0\" x2=\"130.77604879567403\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"218.55694490644458\" y1=\"0.0\" x2=\"218.55694490644458\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"306.33784101721517\" y1=\"0.0\" x2=\"306.33784101721517\" y2=\"342.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(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"389.0581836335954\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"281.7661977412324\" x2=\"389.0581836335954\" y2=\"281.7661977412324\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"221.53239548246484\" x2=\"389.0581836335954\" y2=\"221.53239548246484\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"161.29859322369725\" x2=\"389.0581836335954\" y2=\"161.29859322369725\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"101.06479096492967\" x2=\"389.0581836335954\" y2=\"101.06479096492967\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"40.83098870616209\" x2=\"389.0581836335954\" y2=\"40.83098870616209\" 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(#c3Z9DfX)\" clip-bounds-jfx=\"[rect (25.941816366404606, 0.0), (389.0581836335954, 342.0)]\">\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"347.05793665468195\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"337.33162302009094\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"9.726313634590952\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"327.60530938550005\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"317.8789957509091\" y=\"332.96492966118484\" height=\"9.03507033881516\" width=\"9.726313634590952\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"308.1526821163182\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"298.4263684817273\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"288.70005484713636\" y=\"275.7428175153557\" height=\"66.25718248464432\" width=\"9.726313634590952\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"278.9737412125454\" y=\"257.67267683772536\" height=\"84.32732316227464\" width=\"9.726313634590952\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"269.24742757795445\" y=\"218.52070536952647\" height=\"123.47929463047353\" width=\"9.726313634590952\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"259.52111394336356\" y=\"188.40380424014265\" height=\"153.59619575985735\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"249.79480030877264\" y=\"143.22845254606696\" height=\"198.77154745393304\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"240.0684866741817\" y=\"64.92450960966909\" height=\"277.0754903903309\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"230.3421730395908\" y=\"113.11155141668317\" height=\"228.88844858331683\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"220.61585940499987\" y=\"31.79591836734693\" height=\"310.2040816326531\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"210.88954577040894\" y=\"86.00634040023775\" height=\"255.99365959976225\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"201.16323213581802\" y=\"128.17000198137507\" height=\"213.82999801862493\" width=\"9.726313634590895\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"191.4369185012271\" y=\"101.06479096492967\" height=\"240.93520903507033\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"181.71060486663617\" y=\"143.22845254606696\" height=\"198.77154745393304\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"171.98429123204522\" y=\"179.36873390132752\" height=\"162.63126609867248\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"162.2579775974543\" y=\"209.4856350307113\" height=\"132.5143649692887\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"152.53166396286338\" y=\"272.73112740241726\" height=\"69.26887259758274\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"142.80535032827245\" y=\"281.7661977412324\" height=\"60.23380225876758\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"133.07903669368153\" y=\"278.75450762829405\" height=\"63.24549237170595\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"123.35272305909061\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"113.62640942449968\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"103.90009578990875\" y=\"320.91816920943137\" height=\"21.08183079056863\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"94.17378215531782\" y=\"332.96492966118484\" height=\"9.03507033881516\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"84.44746852072691\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"9.726313634590909\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"74.72115488613596\" y=\"342.0\" height=\"0.1\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"64.99484125154504\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"9.726313634590923\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"c3Z9DfX\">\n", " <rect x=\"25.941816366404606\" y=\"0.0\" width=\"389.0581836335954\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(25.941816366404606 342.0 ) \">\n", " <g transform=\"translate(42.99515268490347 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-4</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(130.77604879567403 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(218.55694490644458 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(306.33784101721517 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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", " <line x1=\"0.0\" y1=\"0.0\" x2=\"389.0581836335954\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 281.7661977412324 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 221.53239548246484 ) \">\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>40</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 161.29859322369725 ) \">\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>60</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 101.06479096492967 ) \">\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>80</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 40.83098870616209 ) \">\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>100</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(241.4709081832023 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"djmh7Ry\">\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=\"442.0\" height=\"388.0\" x=\"452.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", "#pchpIPT .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", "#pchpIPT .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", "#pchpIPT .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", "#pchpIPT .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", "font-style: normal;\n", "\n", "}\n", "#pchpIPT .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", "#pchpIPT .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", "#pchpIPT .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", "#pchpIPT .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", "#dDM6q9O .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", "#pchpIPT .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", "#pchpIPT .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", "#dDM6q9O .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", "#pchpIPT .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", "#pchpIPT .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", "#dDM6q9O .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", "#dDM6q9O .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", "#dDM6q9O .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=\"pchpIPT\">\n", " <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 388.0 L442.0 388.0 L442.0 0.0 Z\">\n", " </path>\n", " <g transform=\"translate(21.0 6.0 ) \">\n", " <g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"42.99515268490347\" y1=\"0.0\" x2=\"42.99515268490347\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"130.77604879567403\" y1=\"0.0\" x2=\"130.77604879567403\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"218.55694490644458\" y1=\"0.0\" x2=\"218.55694490644458\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"306.33784101721517\" y1=\"0.0\" x2=\"306.33784101721517\" y2=\"342.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(25.941816366404606 0.0 ) \">\n", " <g>\n", " <line x1=\"0.0\" y1=\"342.0\" x2=\"389.0581836335954\" y2=\"342.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"281.7661977412324\" x2=\"389.0581836335954\" y2=\"281.7661977412324\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"221.53239548246484\" x2=\"389.0581836335954\" y2=\"221.53239548246484\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"161.29859322369725\" x2=\"389.0581836335954\" y2=\"161.29859322369725\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"101.06479096492967\" x2=\"389.0581836335954\" y2=\"101.06479096492967\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n", " </line>\n", " <line x1=\"0.0\" y1=\"40.83098870616209\" x2=\"389.0581836335954\" y2=\"40.83098870616209\" 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(#cIBjVID)\" clip-bounds-jfx=\"[rect (25.941816366404606, 0.0), (389.0581836335954, 342.0)]\">\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g>\n", " <g>\n", " <rect x=\"327.85268609045517\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"317.68323614953647\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"307.51378620861783\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"297.3443362676992\" y=\"329.9532395482465\" height=\"12.046760451753528\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"287.17488632678055\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"277.00543638586186\" y=\"320.91816920943137\" height=\"21.08183079056863\" width=\"10.169449940918696\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"266.8359864449432\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"256.6665365040245\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"246.49708656310588\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"236.32763662218724\" y=\"281.7661977412324\" height=\"60.23380225876758\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"226.15818668126857\" y=\"287.78957796710915\" height=\"54.21042203289085\" width=\"10.169449940918668\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"215.98873674034994\" y=\"263.69605706360215\" height=\"78.30394293639785\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"205.81928679943127\" y=\"275.7428175153557\" height=\"66.25718248464432\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"195.64983685851263\" y=\"290.8012680800475\" height=\"51.19873191995248\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"185.48038691759396\" y=\"302.84802853180105\" height=\"39.15197146819895\" width=\"10.169449940918668\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"175.3109369766753\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"165.14148703575665\" y=\"317.90647909649294\" height=\"24.093520903507056\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"154.97203709483802\" y=\"314.8947889835546\" height=\"27.105211016445423\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"144.80258715391932\" y=\"326.9415494353081\" height=\"15.058450564691896\" width=\"10.169449940918668\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"134.63313721300068\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"124.46368727208203\" y=\"335.97661977412326\" height=\"6.0233802258767355\" width=\"10.169449940918653\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"114.29423733116336\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"10.169449940918653\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"104.12478739024472\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"93.95533744932607\" y=\"342.0\" height=\"0.1\" width=\"10.169449940918653\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"83.78588750840743\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"73.61643756748876\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"63.44698762657009\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"10.169449940918668\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"53.27753768565145\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"43.108087744732785\" y=\"342.0\" height=\"0.1\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " <rect x=\"32.938637803814146\" y=\"338.98830988706163\" height=\"3.0116901129383677\" width=\"10.16944994091864\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" fill=\"rgb(71,71,71)\" fill-opacity=\"1.0\" stroke-width=\"1.1\">\n", " </rect>\n", " </g>\n", " </g>\n", " </g>\n", " <defs>\n", " <clipPath id=\"cIBjVID\">\n", " <rect x=\"25.941816366404606\" y=\"0.0\" width=\"389.0581836335954\" height=\"342.0\">\n", " </rect>\n", " </clipPath>\n", " </defs>\n", " </g>\n", " <g>\n", " <g transform=\"translate(25.941816366404606 342.0 ) \">\n", " <g transform=\"translate(42.99515268490347 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>-4</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(130.77604879567403 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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(218.55694490644458 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.0 ) \">\n", " <text style=\"font-size:13.0px;\" y=\"0.0\" class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n", " <tspan>0</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(306.33784101721517 0.0 ) \">\n", " <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n", " </line>\n", " <g transform=\"translate(0.0 6.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", " <line x1=\"0.0\" y1=\"0.0\" x2=\"389.0581836335954\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n", " </line>\n", " </g>\n", " <g transform=\"translate(25.941816366404606 0.0 ) \">\n", " <g transform=\"translate(0.0 342.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 281.7661977412324 ) \">\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>20</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 221.53239548246484 ) \">\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>40</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 161.29859322369725 ) \">\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>60</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 101.06479096492967 ) \">\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>80</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " <g transform=\"translate(0.0 40.83098870616209 ) \">\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>100</tspan>\n", " </text>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " </g>\n", " <g transform=\"translate(15.0 177.0 ) rotate(-90.0 ) \">\n", " <text style=\"font-size:15.0px;\" y=\"0.0\" class=\"axis-title-y\" text-anchor=\"middle\">\n", " <tspan>count</tspan>\n", " </text>\n", " </g>\n", " <g transform=\"translate(241.4709081832023 382.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", " <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 388.0 L442.0 388.0 L442.0 0.0 Z\" pointer-events=\"none\">\n", " </path>\n", " </g>\n", " <g id=\"dDM6q9O\">\n", " </g>\n", " </svg>\n", "</svg>\n", " <script>document.getElementById(\"3190db14-2854-47ce-89b3-3fe7c4983c05\").style.display = \"none\";</script>" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gggrid(listOf(p1, p2), sharex = true, sharey = true)" ] } ], "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 }