{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# `bqplot`-API und -Objektmodell" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `bqplot`-API" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe463bb556964efe9ec296834bbdf5fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "VBox(children=(Figure(axes=[Axis(scale=LinearScale()), Axis(grid_lines='dashed', orientation='vertical', scale…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from bqplot import pyplot as plt\n", "\n", "\n", "plt.figure(1)\n", "n = 200\n", "x = np.linspace(0.0, 10.0, n)\n", "y = np.cumsum(np.random.randn(n))\n", "plt.plot(x, y, axes_options={\"y\": {\"grid_lines\": \"dashed\"}})\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `bqplot`-Objektmodell" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf96d81166184ff1a710e8ed622ff3cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Figure(axes=[Axis(label='X', scale=OrdinalScale()), Axis(label='Y', orientation='vertical', scale=LinearScale(…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from bqplot import Axis, Bars, Figure, LinearScale, Lines, OrdinalScale\n", "from IPython.display import display\n", "\n", "\n", "size = 20\n", "np.random.seed(0)\n", "\n", "x_data = np.arange(size)\n", "\n", "x_ord = OrdinalScale()\n", "y_sc = LinearScale()\n", "\n", "bar = Bars(\n", " x=x_data,\n", " y=np.random.randn(2, size),\n", " scales={\"x\": x_ord, \"y\": y_sc},\n", " type=\"stacked\",\n", ")\n", "line = Lines(\n", " x=x_data,\n", " y=np.random.randn(size),\n", " scales={\"x\": x_ord, \"y\": y_sc},\n", " stroke_width=3,\n", " colors=[\"red\"],\n", " display_legend=True,\n", " labels=[\"Line chart\"],\n", ")\n", "\n", "ax_x = Axis(scale=x_ord, grid_lines=\"solid\", label=\"X\")\n", "ax_y = Axis(\n", " scale=y_sc,\n", " orientation=\"vertical\",\n", " tick_format=\"0.2f\",\n", " grid_lines=\"solid\",\n", " label=\"Y\",\n", ")\n", "\n", "Figure(\n", " marks=[bar, line],\n", " axes=[ax_x, ax_y],\n", " title=\"API Example\",\n", " legend_location=\"bottom-right\",\n", ")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3.11 Kernel", "language": "python", "name": "python311" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.4" }, "latex_envs": { "LaTeX_envs_menu_present": true, "autoclose": false, "autocomplete": true, "bibliofile": "biblio.bib", "cite_by": "apalike", "current_citInitial": 1, "eqLabelWithNumbers": true, "eqNumInitial": 1, "hotkeys": { "equation": "Ctrl-E", "itemize": "Ctrl-I" }, "labels_anchors": false, "latex_user_defs": false, "report_style_numbering": false, "user_envs_cfg": false }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "0c2dc9c363fc4e8a840b351c082f2ab5": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "min_width": "125px" } }, "2524e337aa094702a10236204f41d97f": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "2e42fa4abce946ee8ac5da623fd2ded8": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "PanZoomModel", "state": { "scales": { "x": [ "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff" ], "y": [ "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" ] } } }, "410309e42e684ebfb6a2fa9135c7fe75": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "stabilized": false } }, "4186594e3c8046fd8907ef6bc162e031": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "FigureModel", "state": { "_dom_classes": [], "axes": [ "IPY_MODEL_4e58a7273aee41d0a9a8da2379e39045", "IPY_MODEL_7aaf19ae26ff4d3bae689b181e296a44" ], "layout": "IPY_MODEL_7ba176d2d5a24267960c3c0a026a8a46", "legend_location": "bottom-right", "marks": [ "IPY_MODEL_787c211f49b94702bb35565c01cb150f", "IPY_MODEL_dfe968ae39c74045b172462fa7cb08dd" ], "scale_x": "IPY_MODEL_c5900a2829ea4dbe8ead257f466d3aee", "scale_y": "IPY_MODEL_bc3cb3871ad5450f935e543d7a33064e", "title": "API Example" } }, "4867b14624594288b02ea3a62b1fd936": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "4bcd81b0949a496cafaf844e41f74fff": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "stabilized": false } }, "4e58a7273aee41d0a9a8da2379e39045": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "AxisModel", "state": { "label": "X", "scale": "IPY_MODEL_b77cd15ac3c34871b7e97e933a1303c4", "side": "bottom", "tick_values": { "type": null, "values": null } } }, "51b407f753f146899b5309aa8a0e251d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "children": [ "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "IPY_MODEL_fdc8d4606503442e9bc3ec3513072873" ], "layout": "IPY_MODEL_82ad097616c7434e89fac9d847a6b87d" } }, "542c5aa0bc634ccfbc7313105e3173d1": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "display_legend": false, "fill_colors": [], "labels": [ "C1" ], "scales": { "x": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "y": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" }, "selected": [], "x": { "type": "float", "values": [ 0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10 ] }, "y": { "type": "float", "values": [ 1.0616641164644782, 0.7552139512256315, 0.8883037108289927, 0.6557452801755714, 0.7791278391336459, 0.5595496327758155, -1.248985945559855, -0.34987444903564224, -0.44759255820160926, 0.32867669841711866, -1.138807877887003, -0.38073532569920054, -2.219944006177507, -2.2387907407255576, -2.6810543059154806, -1.733847059829003, -2.788746977251788, -1.4893855812936792, -2.0318842502806858, -2.0019591433746324, -0.6454385420981719, 1.4542035378853087, 0.6322709420431601, -1.0492197666890624, -1.187698986566386, -1.1724573971747787, -0.7889751881769322, 0.47833093003287197, 0.9898805391940264, 0.9653212746202924, 1.7408579132767286, 2.3896883566163414, 2.425825769802453, 1.0239879453866658, 0.7853689958052588, 1.206066391172013, 2.9326951541176856, 4.7983559676910446, 3.222370851729849, 5.250418641590492, 5.3724615174343935, 4.17268002303015, 4.435816316942049, 5.105665819858382, 4.8263062136780155, 6.554241675790693, 7.0890595065739905, 5.995708508759215, 6.202111780307146, 5.583464645156631, 4.666173817993157, 3.91689122760705, 5.09658366917573, 5.767620485886951, 6.722697049665059, 7.411494101643723, 8.697155278917846, 9.187828614327044, 8.4427912127259, 7.9070951632655495, 7.64152018411869, 7.547237179071959, 6.931761137036267, 3.6549993691167817, 1.8616894657558087, 3.2170911747757693, 2.941437867220902, 2.949348635784431, 2.2290905340794187, 2.7400728640952154, 1.6772236135361598, 0.8898983127064302, 1.0891122504880362, 1.3937722780476443, 0.6300612131742329, -0.033226049717756, 0.34415793315019544, -0.21020666852080344, -0.6277370329120816, -1.2550944927937495, -1.3982863131023895, -1.8582062757551614, -2.0791753129717847, -2.606196918291127, -3.048786219726399, -4.014169197577286, -4.261769582566048, -4.421075032263524, -6.401264618694683, -8.265547290725861, -6.292507698306471, -6.510497871213569, -6.21257132774024, -7.207787061404579, -7.026041990471149, -6.67145455333121, -7.521950947110798, -7.070990155428406, -5.518549782329976, -6.662100623506188, -5.6511599237765395, -5.81983195534, -5.2536683030473466, -4.6008913224858885, -5.427240706594766, -5.423472021487722, -2.3609585933693262, -4.305778590528837, -5.219247161841904, -5.440034413175561, -3.7991536747472354, -4.529623280798909, -4.008321819810295, -5.088418675803748, -4.521964289106264, -4.509437287278794, -3.734639625299086, -2.08677888631119, -2.371549233946342, -2.6582643129927384, -3.7866196385343045, -4.318809093137411, -3.4247313071534, -3.12531481079788, -2.6315034175082994, -3.1141960437225555, -3.867850750907746, -4.395971966331768, -3.6280714849417475, -4.086818833189507, -4.822648511073995, -6.573920245636286, -6.3247886794591235, -5.109395702092897, -5.954472313180038, -4.831128528599416, -4.290090547121827, -4.5478421767575705, -3.9624931426641603, -4.032365880365503, -3.1698262011694642, -2.868880509811805, -1.9168674245150794, -2.014061286822333, -2.480444084034458, -2.873816757964656, -1.488868997104504, -2.0173366882338897, -2.5105603517164656, -1.3376431052812545, -1.818467400428766, -0.9030710360096945, -1.6173812447353568, -1.186721076774956, -2.6290149887540775, -2.2586866565678747, -0.8799934752476928, 1.1649921247751591, 1.9395612447982244, 2.612565298947346, 3.9202858901147097, 2.9647674515528015, 3.3090107625457525, 1.7427205011733387, 2.7480900008497704, 1.9219012054289264, 3.4445022567144257, 2.691309450416541, 2.2929544222607827, 1.4633529313679294, 2.1539669994840605, 2.446277557456685, 3.646590139730888, 3.7950390974196977, 4.436159794289608, 3.3236038982413145, 4.371176542031284, 3.5323809813648417, 2.33116669301726, 1.8110008869879386, 1.4072827716779495, 1.74182334755536, 2.4334046125358793, 3.2991726451507075, 4.031493277831675, 3.79797939722982, 4.00540171161797, 3.0216896561287214, 3.5377366965653625, 3.1363680614774587, 3.3191462933127807, 1.7352668487775427, 2.6232989218805534, 2.9866293940444693, 2.2986897240989754, 1.937212229548878, 1.1865869827594269, 0.40731383118453457, -0.27667187577802876, 1.187960123706219 ] } } }, "57620659f2be4bdc94ee49c9809cd5b8": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "display_legend": false, "fill_colors": [], "labels": [ "C1" ], "scales": { "x": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "y": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" }, "selected": [], "x": { "type": "float", "values": [ 0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10 ] }, "y": { "type": "float", "values": [ -1.1245290419565344, -1.0982431256810705, -3.0444718884337876, -4.365228194270058, -4.315137890646101, -4.359730598236205, -2.7670701725687143, -3.5252468761176554, -4.899929397511006, -5.175192701736595, -4.707173048337369, -4.476872182182695, -3.837212357058017, -2.429180312735663, -2.4024638487022414, -3.123154196201994, -4.161727373383407, -3.6799750022325575, -4.2558756667484925, -4.741251375212097, -2.646689134436237, -2.557669225901537, -3.267691262503624, -4.609672627507286, -4.852346723591344, -5.752399167239886, -5.7737141916715355, -4.54312151039762, -4.676242115286035, -5.437535177830629, -3.670991933832921, -2.7404202022061535, -2.661948425594199, -1.5475632697873856, -1.2068038409392858, -1.0066494710962668, -0.37230052283490667, -2.3297977962072527, -3.433256801679498, -3.873020716387565, -3.6530223996417757, -4.118072104667362, -3.786997415608333, -5.437009944964677, -5.1320344160049, -3.5537747759707914, -2.8301076347416845, -1.8255787376457484, -4.074364697540125, -5.252506206354711, -5.646078432477516, -4.483851429863384, -4.10386493261027, -4.12510880177184, -5.010263761967072, -5.2792864617690975, -5.225632660354942, -4.463965860797754, -5.844891559214316, -6.555607653757906, -8.431805853613591, -9.364865902298824, -10.197777602475165, -9.905206874191625, -11.495778218611095, -12.912772168452246, -11.375794014219338, -10.388522066027914, -12.01476208399423, -13.256545596999777, -12.46107869177249, -12.117240049757404, -10.464896121642521, -11.39772516419323, -10.918579021217933, -9.502827988826072, -8.936579263580832, -7.906788358580161, -7.6186659656055875, -7.879702855049211, -8.641895902101137, -8.85591300820253, -8.617894709652392, -9.878991108721586, -10.013623777491974, -11.329740573705223, -14.230044866930127, -14.725024160398942, -14.517743464107387, -14.577057684829663, -14.7254508203422, -14.89837684682465, -14.17803931342686, -13.377095505342474, -13.487203208807433, -13.462506707580072, -13.751875611804941, -14.3994693267603, -13.732019970465608, -14.177540403136039, -12.895039073041353, -12.349893893256498, -12.213991302757988, -11.252223632085311, -10.874729867561268, -10.389149162412185, -12.563992585308, -12.508906580903762, -11.764541838588968, -11.907033076455377, -14.03492557851164, -14.052399314050882, -13.707854746678695, -12.335074652836973, -12.86884381827894, -13.987228999647837, -14.012484991768243, -13.602454024062189, -14.16135372447527, -14.58089610055136, -14.194377411575186, -16.595167884108307, -17.22191065148553, -15.459259431388944, -15.132663598118203, -14.401605545483202, -13.228414487900755, -13.878938844427388, -15.613103397060156, -15.208927381659327, -15.32262425177274, -16.224241941630975, -15.462833861932337, -14.389358568311334, -14.24354451069462, -14.316110703462583, -15.30727221356619, -15.125759744811495, -15.33167477661157, -17.335196320342728, -18.643421945037115, -18.55492535403889, -17.880073744229172, -18.50235679047652, -20.07274091661211, -22.12361244974671, -21.605825656225164, -20.31615799113285, -21.719804603657156, -20.52791509364576, -21.321323763139464, -21.08621092520252, -21.081670802398605, -21.91332116038841, -21.89793534949096, -22.822232503975535, -22.72966347607082, -21.675712789758396, -22.50079593622813, -23.555138764302644, -23.538274063577045, -23.581392216417203, -24.28047054214452, -26.331092505253572, -25.65724892329716, -26.49428481925695, -25.946195492562413, -24.574641861302762, -26.183503685893847, -26.855118609709255, -26.351386011822008, -25.322415053276078, -24.037705467691023, -23.5462483802561, -24.991544756034674, -24.871639485897692, -23.757771125241824, -23.167593042095074, -23.946867255160132, -24.690301227154983, -24.129849716329556, -25.77149609992887, -25.09244408496334, -25.105650125427328, -25.551158331656758, -22.984029388435964, -22.38247161638082, -22.49973513409477, -23.77148249251625, -26.242143074221975, -26.69791066115831, -27.151481337105533, -26.38561868141932, -26.380083130412107, -26.859400826292976, -26.578045830509648, -27.56680684553506, -26.883680705444014, -27.30416920619801, -25.389394339154062 ] } } }, "5d98556977494abd87ec110d8e37d635": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "FigureModel", "state": { "_dom_classes": [], "axes": [ "IPY_MODEL_f1dc9f07445f46f1b994b8b087b1be9f", "IPY_MODEL_f600fd64f54b4af6818da5e6b90ac182" ], "layout": "IPY_MODEL_0c2dc9c363fc4e8a840b351c082f2ab5", "marks": [ "IPY_MODEL_ead0b093a5604bb99addd02f738b251b", "IPY_MODEL_542c5aa0bc634ccfbc7313105e3173d1", "IPY_MODEL_6260103b33374d528e6782c8aec4224c", "IPY_MODEL_57620659f2be4bdc94ee49c9809cd5b8", "IPY_MODEL_e81fac1503ea4fce838a7bf43ae6e8ed" ], "scale_x": "IPY_MODEL_7a5b54ba12a04c938726a42567990df6", "scale_y": "IPY_MODEL_d4f0688fa4da440493cca2c33e204b72", "title": "Figure 1" } }, "6260103b33374d528e6782c8aec4224c": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "display_legend": false, "fill_colors": [], "labels": [ "C1" ], "scales": { "x": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "y": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" }, "selected": [], "x": { "type": "float", "values": [ 0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10 ] }, "y": { "type": "float", "values": [ -0.2086722702100084, 1.102222335455148, 0.45089797036530455, 0.11023024263523601, -0.13668199324414046, -1.3158412988066017, -2.3290280069647107, -1.3474742242564965, -0.7563991380136753, -0.08733533768698243, -1.3623438025205044, -1.2955248374928283, -0.6691638478930704, 0.3639438047614425, 0.6307784522288633, 0.8992304078117808, 0.3074505548475742, -0.34552665419411555, 0.05063215607563104, 0.2758523806119856, 0.7927888714513561, 1.2950970797906538, 2.841754223620666, 2.457954587369847, 1.3217677104320873, 2.0776999097766935, 2.570781998696775, 3.004769311722802, 3.3181093387941867, 3.9978422801363065, 3.5475083967956205, 4.824443611020319, 5.292601277909153, 7.155648502983498, 8.146785971422636, 8.12250660535815, 9.554452682348913, 9.947687182205676, 9.212797105946475, 5.952717691046331, 4.605797213820774, 3.621588619564014, 3.215656234912157, 2.968652608015148, 3.004140358151792, 1.930702014422235, 1.492889978317425, 2.955907994628876, 3.5327255449747517, 3.435662499763482, 5.008416713874512, 4.185478087168202, 3.1415600652971376, 3.2662276378213226, 1.6798000251059846, 2.0330796602261363, 3.006853024193527, 3.56711555975121, 3.8306063854756234, 4.40955565599536, 5.073181121081967, 6.134767892126842, 4.971194097290831, 4.941779467616969, 3.7599112035917637, 3.585927886875867, 3.0097511561940307, 4.149652395464184, 4.129455391636106, 4.393729728578904, 5.0486777295871255, 6.187330177018959, 3.512748581262866, 2.1569096576276485, 2.4309724544991744, 2.394692959895987, 3.557027795985107, 2.5462687274617686, 1.8544791361562916, 2.493856872713664, 3.477886675315771, 5.24312677255045, 5.342495118755266, 4.5459712394684955, 4.041333686925191, 4.7052956217345905, 5.4888658056029245, 6.422805286588589, 6.375486533250201, 5.380210917937659, 6.481009653219358, 6.8088692748567174, 6.946022676814989, 6.42156225679996, 5.625740515740568, 5.5277610416300975, 4.968708561397168, 4.1109959535561, 4.698493122298796, 4.610818949915607, 6.109345264204629, 6.960202859271533, 7.361304054940048, 8.140513505337848, 7.3461901621568, 6.38785788921652, 6.753582895110912, 7.345364896599744, 8.156314640801556, 7.8392086420533085, 9.176939420319641, 8.223287189219592, 8.584482931743477, 8.51970252683745, 9.829463712294974, 8.659783991055637, 7.693905694318428, 8.926818253669227, 9.695116571798833, 8.825841981388406, 8.465336403685551, 9.636612639208327, 9.422559477437964, 8.120917062768394, 6.854938363528028, 7.181566213468951, 6.043815999231098, 5.037623137417136, 4.359186467963469, 5.682966368258741, 8.09228976172983, 8.724482668544171, 9.313050995815498, 7.147857741636274, 8.333616904929842, 7.357550720267371, 6.56224959257847, 8.282211116350126, 8.406317836513086, 7.773712059405671, 7.205550329545486, 7.489598910472072, 7.13263720682738, 8.551660188133548, 9.435429384096658, 9.329487172326035, 9.882421067778829, 9.190190030424091, 10.951225845443222, 10.698499449240138, 11.33271866152334, 13.02490774485644, 12.346368927317581, 11.932607184223695, 11.125884278293283, 11.407637229932922, 10.130430992577143, 9.409747670234772, 11.006058149546023, 11.462366932227063, 12.643683437338039, 13.32950914569925, 13.287267846366715, 12.707141269626138, 13.2539169285665, 12.958957783438565, 12.301819763871215, 11.601483828618306, 11.244783696642946, 11.295944324446534, 10.225127539036167, 9.833877346966432, 11.212536506969096, 9.942265992635082, 10.51541818374917, 10.930273400269122, 11.618522912155083, 11.137415098281624, 9.500851673443831, 9.89314335671692, 9.86956991793533, 8.984780159321732, 9.124604332888676, 8.821105652728576, 9.16804542146848, 8.564624453277265, 7.90461961406816, 7.779098050718699, 7.7747337527576255, 10.527446441683718, 13.457587545799107, 11.060143625370527, 11.119959666678195, 11.202276762917062, 11.61690639842254, 12.21464700850366, 11.375450674153182, 10.610618314981654, 10.274573716719766, 11.988063531870916 ] } } }, "6bba28ecf6ce4869ad00a0c5d96cae3c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "children": [ "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "IPY_MODEL_fdc8d4606503442e9bc3ec3513072873" ], "layout": "IPY_MODEL_2524e337aa094702a10236204f41d97f" } }, "76fd4719e2bb42718d921dfa7870faec": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "stabilized": false } }, "787c211f49b94702bb35565c01cb150f": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "BarsModel", "state": { "color": { "type": null, "values": null }, "colors": [ "steelblue" ], "display_legend": false, "scales": { "x": "IPY_MODEL_b77cd15ac3c34871b7e97e933a1303c4", "y": "IPY_MODEL_76fd4719e2bb42718d921dfa7870faec" }, "selected": [], "x": { "type": "float", "values": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] }, "y": { "type": "float", "values": [ [ 1.764052345967664, 0.4001572083672233, 0.9787379841057392, 2.240893199201458, 1.8675579901499675, -0.977277879876411, 0.9500884175255894, -0.1513572082976979, -0.10321885179355784, 0.41059850193837233, 0.144043571160878, 1.454273506962975, 0.7610377251469934, 0.12167501649282841, 0.44386323274542566, 0.33367432737426683, 1.4940790731576061, -0.20515826376580087, 0.31306770165090136, -0.8540957393017248 ], [ -2.5529898158340787, 0.6536185954403606, 0.8644361988595057, -0.7421650204064419, 2.2697546239876076, -1.4543656745987648, 0.04575851730144607, -0.1871838500258336, 1.5327792143584575, 1.469358769900285, 0.1549474256969163, 0.37816251960217356, -0.8877857476301128, -1.980796468223927, -0.3479121493261526, 0.15634896910398005, 1.2302906807277207, 1.2023798487844113, -0.3873268174079523, -0.30230275057533557 ] ] } } }, "7a5b54ba12a04c938726a42567990df6": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "allow_padding": false, "max": 1, "min": 0, "stabilized": false } }, "7aaf19ae26ff4d3bae689b181e296a44": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "AxisModel", "state": { "label": "Y", "orientation": "vertical", "scale": "IPY_MODEL_76fd4719e2bb42718d921dfa7870faec", "side": "left", "tick_format": "0.2f", "tick_values": { "type": null, "values": null } } }, "7ba176d2d5a24267960c3c0a026a8a46": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": { "min_width": "125px" } }, "82ad097616c7434e89fac9d847a6b87d": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "82f369636028461288b83688a8c2229a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "children": [ "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "IPY_MODEL_fdc8d4606503442e9bc3ec3513072873" ], "layout": "IPY_MODEL_c582b3ec3520414780230987a7a8ff88" } }, "b77cd15ac3c34871b7e97e933a1303c4": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "OrdinalScaleModel", "state": { "domain": [] } }, "bc3cb3871ad5450f935e543d7a33064e": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "allow_padding": false, "max": 1, "min": 0, "stabilized": false } }, "c582b3ec3520414780230987a7a8ff88": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "c5900a2829ea4dbe8ead257f466d3aee": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "allow_padding": false, "max": 1, "min": 0, "stabilized": false } }, "cd017da0cb054e50aecced1929a84135": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "ceeaa81dedb24d1db1932e71cfbaff40": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "children": [ "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "IPY_MODEL_fdc8d4606503442e9bc3ec3513072873" ], "layout": "IPY_MODEL_4867b14624594288b02ea3a62b1fd936" } }, "d4f0688fa4da440493cca2c33e204b72": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinearScaleModel", "state": { "allow_padding": false, "max": 1, "min": 0, "stabilized": false } }, "d568c704f0664291a6e4508aa82fd56a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "VBoxModel", "state": { "children": [ "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "IPY_MODEL_fdc8d4606503442e9bc3ec3513072873" ], "layout": "IPY_MODEL_cd017da0cb054e50aecced1929a84135" } }, "dfe968ae39c74045b172462fa7cb08dd": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "colors": [ "red" ], "fill_colors": [], "labels": [ "Line chart" ], "scales": { "x": "IPY_MODEL_b77cd15ac3c34871b7e97e933a1303c4", "y": "IPY_MODEL_76fd4719e2bb42718d921dfa7870faec" }, "selected": [], "stroke_width": 3, "x": { "type": "float", "values": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] }, "y": { "type": "float", "values": [ -1.0485529650670926, -1.4200179371789752, -1.7062701906250126, 1.9507753952317897, -0.5096521817516535, -0.4380743016111864, -1.2527953600499262, 0.7774903558319101, -1.6138978475579515, -0.2127402802139687, -0.8954665611936756, 0.386902497859262, -0.510805137568873, -1.180632184122412, -0.028182228338654868, 0.42833187053041766, 0.06651722238316789, 0.3024718977397814, -0.6343220936809636, -0.3627411659871381 ] } } }, "e81fac1503ea4fce838a7bf43ae6e8ed": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "display_legend": false, "fill_colors": [], "labels": [ "C1" ], "scales": { "x": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "y": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" }, "selected": [], "x": { "type": "float", "values": [ 0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10 ] }, "y": { "type": "float", "values": [ -1.8370246285033396, -1.6229189358664087, 0.3874768713636749, 1.191257544092078, -0.13158105363173256, 0.8613653186223296, 0.3040531024498102, -0.02225520717348517, 0.14290242404418496, 0.6207567714456261, -0.7984110703938931, -1.228192124190778, -1.4058060415575349, -2.6677889984243794, -3.656623965687734, -3.714186755017635, -4.859711010912511, -3.883928052898561, -3.0403589972911007, -3.5488203878883535, -2.8262859029502967, -2.1838488833776974, -2.6559874317506207, -1.9733294249304394, -2.4169532467176515, -1.4323194096531475, -0.576321407589013, -1.579155477594485, -1.6674044294209578, -1.4370174558877014, -0.6660008544644865, 0.31976776254798733, 1.920134905022102, 0.7684998602023903, 0.7499397246740935, -0.5928619172073384, -1.6828171361252737, -1.4952506566866974, -2.8891148800695983, -3.2340879852747078, -5.795236726816006, -5.05376916045999, -5.330671825036541, -5.9504372741097775, -7.476393177791029, -9.586662733466191, -10.361099923727084, -10.522637019279179, -12.654422383170761, -12.295227911730613, -14.611137657695119, -15.043839838304018, -13.89869829275968, -15.008298494854223, -14.824658888745303, -14.356153518817933, -14.345607871671396, -13.448082933224105, -13.533716423817769, -14.415807883872768, -14.682628954590545, -14.39361902794498, -13.450809635511225, -14.77979003306502, -14.738521502944549, -14.488923031504216, -15.368330123552756, -15.295749641458748, -15.655360521355039, -15.911143159667562, -17.046836407331476, -15.885827654164377, -16.40366223003715, -17.682415159495193, -18.110178951352673, -16.539712821401107, -15.580798251492133, -15.613596263609963, -16.97495093532179, -16.111464839048203, -17.693881860692397, -17.67325413062532, -17.88810536947695, -19.053462911127102, -20.16160980270976, -21.250701572691153, -20.75843955621211, -22.035645112318747, -21.162430186635387, -20.311888471853887, -21.585977094711232, -24.254733337225456, -24.6923517852303, -26.34571516039531, -27.354321029355948, -26.54543325145286, -26.944794097493734, -27.562671263357814, -28.889119105191597, -28.912411608294775, -28.0614266295638, -28.613046803236337, -29.13924136658057, -30.195432586129353, -29.977949403498975, -30.591491719344557, -31.726001675426744, -30.205426174515384, -29.06024999821924, -30.04674524531837, -29.191011328907678, -28.377090092051006, -27.106687737530176, -27.167302362524808, -28.05524212559701, -29.61827303991809, -29.60379388016284, -29.42016744270389, -30.881506522372188, -30.030314787996495, -31.119774022269663, -30.49927494616672, -30.755352780929467, -31.549375997407104, -30.50333042380176, -30.79915720408587, -32.960866241656156, -34.560337817921464, -33.792922344322385, -33.52781149582419, -34.74734472634095, -36.01372940027149, -35.024921968774834, -34.11538329100176, -34.16350354597513, -34.74674209335965, -36.570945655411, -36.22092421046372, -35.79777026105515, -35.38330853822746, -36.58876809601857, -36.73077287514911, -37.32843403065013, -37.426133049230494, -36.426347942984776, -34.32655522204567, -34.75724927961844, -31.79572481733597, -31.782047832012523, -31.625992340878863, -31.795214837705284, -32.39190254408265, -32.76447955499042, -33.301757296221815, -34.11565176494862, -34.447386815899456, -34.86519533732252, -37.86465515602814, -35.773311654368776, -35.13995549658387, -34.28729080731405, -34.43978191716775, -32.83235840417962, -32.82219975301529, -33.32828879301075, -34.93130857595953, -34.145360252174065, -33.91961940025064, -33.53888569804315, -31.922015541441652, -31.00449129062163, -31.520100532714352, -31.91825108878925, -33.905340118016, -33.77842785448195, -33.76668970012078, -35.39388230396604, -36.89980580366301, -38.359526523279584, -38.54464821337105, -39.07084932713124, -40.122397351125386, -40.24250565522512, -40.992774524919426, -41.28072241948263, -42.048334843217, -42.02666907220866, -44.21221827139347, -43.3813775931641, -42.75316533062176, -40.72535208508189, -38.727147067842374, -39.33615988475469, -40.30788874838144, -39.14633099685808, -38.87907760513676, -39.55755600774375, -38.159535576683254, -38.60402657305346, -37.61943177627898 ] } } }, "ead0b093a5604bb99addd02f738b251b": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "LinesModel", "state": { "color": { "type": null, "values": null }, "display_legend": false, "fill_colors": [], "labels": [ "C1" ], "scales": { "x": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "y": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75" }, "selected": [], "x": { "type": "float", "values": [ 0, 0.05025125628140704, 0.10050251256281408, 0.15075376884422112, 0.20100502512562815, 0.2512562814070352, 0.30150753768844224, 0.35175879396984927, 0.4020100502512563, 0.45226130653266333, 0.5025125628140704, 0.5527638190954774, 0.6030150753768845, 0.6532663316582915, 0.7035175879396985, 0.7537688442211056, 0.8040201005025126, 0.8542713567839196, 0.9045226130653267, 0.9547738693467337, 1.0050251256281408, 1.0552763819095479, 1.105527638190955, 1.155778894472362, 1.206030150753769, 1.256281407035176, 1.306532663316583, 1.35678391959799, 1.407035175879397, 1.4572864321608041, 1.5075376884422111, 1.5577889447236182, 1.6080402010050252, 1.6582914572864322, 1.7085427135678393, 1.7587939698492463, 1.8090452261306533, 1.8592964824120604, 1.9095477386934674, 1.9597989949748744, 2.0100502512562817, 2.0603015075376887, 2.1105527638190957, 2.1608040201005028, 2.21105527638191, 2.261306532663317, 2.311557788944724, 2.361809045226131, 2.412060301507538, 2.462311557788945, 2.512562814070352, 2.562814070351759, 2.613065326633166, 2.663316582914573, 2.71356783919598, 2.763819095477387, 2.814070351758794, 2.864321608040201, 2.9145728643216082, 2.9648241206030153, 3.0150753768844223, 3.0653266331658293, 3.1155778894472363, 3.1658291457286434, 3.2160804020100504, 3.2663316582914574, 3.3165829145728645, 3.3668341708542715, 3.4170854271356785, 3.4673366834170856, 3.5175879396984926, 3.5678391959798996, 3.6180904522613067, 3.6683417085427137, 3.7185929648241207, 3.7688442211055277, 3.819095477386935, 3.869346733668342, 3.919597989949749, 3.969849246231156, 4.020100502512563, 4.07035175879397, 4.120603015075377, 4.170854271356784, 4.2211055276381915, 4.2713567839195985, 4.3216080402010055, 4.371859296482413, 4.42211055276382, 4.472361809045227, 4.522613065326634, 4.572864321608041, 4.623115577889448, 4.673366834170855, 4.723618090452262, 4.773869346733669, 4.824120603015076, 4.874371859296483, 4.92462311557789, 4.974874371859297, 5.025125628140704, 5.075376884422111, 5.125628140703518, 5.175879396984925, 5.226130653266332, 5.276381909547739, 5.326633165829146, 5.376884422110553, 5.42713567839196, 5.477386934673367, 5.527638190954774, 5.577889447236181, 5.628140703517588, 5.678391959798995, 5.728643216080402, 5.778894472361809, 5.8291457286432165, 5.8793969849246235, 5.9296482412060305, 5.9798994974874375, 6.030150753768845, 6.080402010050252, 6.130653266331659, 6.180904522613066, 6.231155778894473, 6.28140703517588, 6.331658291457287, 6.381909547738694, 6.432160804020101, 6.482412060301508, 6.532663316582915, 6.582914572864322, 6.633165829145729, 6.683417085427136, 6.733668341708543, 6.78391959798995, 6.834170854271357, 6.884422110552764, 6.934673366834171, 6.984924623115578, 7.035175879396985, 7.085427135678392, 7.135678391959799, 7.185929648241206, 7.236180904522613, 7.28643216080402, 7.336683417085427, 7.386934673366834, 7.437185929648241, 7.4874371859296485, 7.5376884422110555, 7.5879396984924625, 7.63819095477387, 7.688442211055277, 7.738693467336684, 7.788944723618091, 7.839195979899498, 7.889447236180905, 7.939698492462312, 7.989949748743719, 8.040201005025127, 8.090452261306533, 8.14070351758794, 8.190954773869347, 8.241206030150755, 8.291457286432161, 8.341708542713569, 8.391959798994975, 8.442211055276383, 8.492462311557789, 8.542713567839197, 8.592964824120603, 8.643216080402011, 8.693467336683417, 8.743718592964825, 8.793969849246231, 8.84422110552764, 8.894472361809045, 8.944723618090453, 8.99497487437186, 9.045226130653267, 9.095477386934673, 9.145728643216081, 9.195979899497488, 9.246231155778895, 9.296482412060302, 9.34673366834171, 9.396984924623116, 9.447236180904524, 9.49748743718593, 9.547738693467338, 9.597989949748744, 9.648241206030152, 9.698492462311558, 9.748743718592966, 9.798994974874372, 9.84924623115578, 9.899497487437186, 9.949748743718594, 10 ] }, "y": { "type": "float", "values": [ -1.0497433158878875, -1.0131987362075965, -0.4641571290420622, -1.1300729988666802, -0.6195517411934622, 0.7465078063173142, -0.3751131282533614, -1.152480697395623, -1.6920795407999254, -1.6914372263541364, -2.3145321312199325, -0.6359992489933368, -2.465610459402141, -2.9501740221694646, -5.184177490644933, -5.874879874461394, -5.265586505038333, -5.144037337873495, -3.769995362557709, -2.871165528698041, -3.196735059043521, -1.354604717805415, 0.5559244333838735, -0.6311534751276757, -0.7841565444113998, -1.3498503364216883, -0.48351084275588696, -0.42919710469677846, -2.4520024242357197, -3.350033626768626, -4.353883693780876, -4.3307196340163046, -2.8264017030492745, -2.7672479051111654, -4.220193308588991, -3.716727434271618, -4.697439161261665, -4.525887217283439, -7.153125646118208, -6.040243925304813, -9.091186186163652, -8.661248274301741, -9.421448320454333, -9.115811237639953, -8.656430497946056, -9.482315271904842, -10.3585756873224, -9.249550639965548, -9.533798075847212, -10.972666282738384, -10.611112051814528, -11.967586438321185, -12.257020792129454, -10.593065329483055, -12.088292066533008, -13.179596680436726, -12.826581987280912, -12.247296125392023, -12.199356644545027, -12.076833135938394, -11.741242820087702, -12.667859779956235, -13.150814264646494, -13.224751627230237, -14.156628136495405, -12.292563616765852, -12.249688783188661, -12.043523852567754, -11.52292661131568, -10.638022202671944, -10.821023873740897, -11.23804780941066, -12.614605109114242, -12.366219498063753, -11.613924074758058, -10.571024645693404, -8.851090287478755, -7.286470814983994, -7.805790950962951, -8.36594502905143, -8.248277757975824, -9.191233343194732, -8.559030537144254, -9.107137386474356, -7.468150541692391, -7.701059025379821, -7.793776142526929, -8.158511651689716, -7.821301934058245, -6.654470438549101, -4.156325985159398, -5.478259802229736, -5.4372273618356886, -4.034774805790246, -3.4238430013919716, -4.580830461772352, -3.6904664575876582, -3.2329403835829207, -2.374024389893098, -2.3631903982734266, -1.0088418373524255, -0.30741470910720303, 1.0505326137248168, 1.3381747339162722, 1.231460539170492, 1.441963697110232, 1.3562083394350037, 2.1154963436993577, 0.014450976303660212, 0.1738304467184669, -0.793020995896274, -0.9233788101655803, -1.8213371861396956, -2.8714065066427064, -4.505151787223596, -4.502159820033978, -4.501378029251582, -6.332777350118741, -6.039417007546174, -5.069937273260872, -4.321483726293987, -4.076178198211828, -5.233215533052508, -5.466077227863514, -6.435434434028994, -5.334251007506204, -3.333704708426996, -2.2355172048684455, -1.1837971097041502, 0.07330896707560464, -0.9086538963379941, -0.25467116390876277, -1.187019482029138, 1.2092601065862703, 2.388644184815888, 2.2144143063441635, 1.932135708541305, 1.0204084334670813, 0.7919305716630376, 1.7262910517433783, 1.8057819129269443, 2.8925157625988547, 3.126623555415025, 2.730375082772013, 2.1708839712275454, 2.4713052325149167, 2.8311763135539296, 1.6874084182961158, 2.416916721631565, 2.323912698051595, 1.535434041436285, 0.2617331819275961, 1.6732919851508254, 1.2531406143268886, 0.881553774212569, -0.13374846631529147, -0.2527632848365556, 0.09681883719008977, -0.1727235690027839, -0.31133619156930215, -1.1217441692098844, -1.6264026702473675, -2.6909888320601354, -0.9238576558924589, -0.06110467507473416, 0.19093379127357646, -0.8285012918840255, -2.779425942306027, -2.5990136093548437, -3.3478582622580784, -3.818341192212408, -5.059406070149412, -3.7127619630353945, -1.692811614079103, -2.767831665023433, -3.5798632933804173, -1.2726652809444503, -2.4844185458837114, -1.5293424273678897, 0.3619423768728891, 0.9402132679548868, 0.0742461525561049, -0.949001591147953, -1.4427742419749032, -1.5107622253202817, -2.760080599352349, -2.725740727361512, -4.002785222783887, -5.209920100426654, -3.88210225773538, -3.0776592459388654, -3.7626763026803594, -2.5739228020390126, -2.0385602258203948, -2.5843180228850313, -4.010440764135948, -2.954710711974581, -3.4516277858052278, -4.436597590739996, -4.754464158550026 ] } } }, "ec936be2f6de42e08fb6a86666464ee1": { "model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {} }, "f1dc9f07445f46f1b994b8b087b1be9f": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "AxisModel", "state": { "scale": "IPY_MODEL_4bcd81b0949a496cafaf844e41f74fff", "side": "bottom", "tick_values": { "type": null, "values": null } } }, "f600fd64f54b4af6818da5e6b90ac182": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "AxisModel", "state": { "grid_lines": "dashed", "orientation": "vertical", "scale": "IPY_MODEL_410309e42e684ebfb6a2fa9135c7fe75", "side": "left", "tick_values": { "type": null, "values": null } } }, "fdc8d4606503442e9bc3ec3513072873": { "model_module": "bqplot", "model_module_version": "^0.4.6", "model_name": "ToolbarModel", "state": { "figure": "IPY_MODEL_5d98556977494abd87ec110d8e37d635", "layout": "IPY_MODEL_ec936be2f6de42e08fb6a86666464ee1" } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 4 }