Search for optimal ODE parameters¶
This example demonstrates a workflow for finding optimal parameters for an ordinary differential equation (ODE) describing a chain of chemical reactions. We will find the parameters and evaluate how closely they can reproduce the true dynamics of the system.
In this example, we will use the functions of the JuMP.jl library to formulate the optimisation problem, the nonlinear optimisation library Ipopt.jl, the library for solving differential equations DifferentialEquations.jl and the Plots.jl library to visualise the results.
Consider a model of a multi-step chain of chemical reactions involving several substances $C$. Substances react with each other with a certain rate $r$ and form new substances. The true rate of reactions for this problem is unknown. But we can make observations a certain number of times in a given time $t$. Based on these observations, we will find the optimal reaction rates $r$.
There are six substances in the model, from $C_1$ to $C_6$, that react as follows:
- one substance $C_1$ and one substance $C_2$ react to form one substance $C_3$ at a rate of $r_1$;
- one substance $C_3$ and one substance $C_4$ react to form one substance $C_5$ at a rate of $r_2$;
- one substance $C_3$ and one substance $C_4$ react to form one substance $C_6$ at a rate of $r_3$.
The reaction rate is proportional to the product of the quantities of the required substances. Thus, if $y_i$ represents the amount of substance $C_i$, then the reaction rate to produce $C_3$ is equal to $r_1y_1y_2$. Similarly, the reaction rate to produce $C_5$ is equal to $r_2y_3y_4$, and the reaction rate to produce $C_6$ is equal to $r_3y_3y_4$.
Thus, we can make a differential equation describing the process of change in our system:
$$ \frac{dy}{dt} = \begin{bmatrix}
-r_1y_1y_2 \\
-r_1y_1y_2 \\
-r_2y_3y_4 + r_1y_1y_2 - r_3y_3y_4 \\
-r_2y_3y_4 - r_3y_3y_4 \\
r_2y_3y_4 \\
r_3y_3y_4 \\
\end{bmatrix} $$
Set initial values $y(0)=[1,1,0,1,0,0]$. Such initial values guarantee that all substances will completely react, as a result of which $C_1–C_4$ will approach zero as the time increases.
If your environment does not have the latest version of the JuMP
package installed , uncomment and run the box below:
To launch a new version of the library after the installation is complete, click on the "My Account" button:
Then click on the "Stop" button:

Restart the session by pressing the "Start Engee" button:

Connect the library JuMP
:
Connect the nonlinear solver library Ipopt
:
Connect the library for solving differential equations DifferentialEquations
:
Connect the graphing library Plots
:
Configuration of visualisation parameters¶
Set customised chart size and background plotly
:
Describe a function that defines bounds for $min$ and $max$ axes to approximate the graphs:
Out[0]:
check_bounds (generic function with 1 method)
Solving differential equations¶
Create a function dif_fun
, which describes the ODE of our chemical reaction chain:
Out[0]:
dif_fun (generic function with 1 method)
Set the true values of $r$ and store them in the variable r_true
:
The values $r_1$, $r_2$ and $r_3$ in the variable r_true
are the benchmark that the optimisation algorithm should try to recreate.
Set the response simulation duration and initial values for $С_1 - С_6$:
Create an ODE problem using the function ODEProblem
:
Solve the problem using the function solve
. In brackets, give the name of the solver and the frequency of observations in the argument saveat
:
To solve this problem we use the Runge-Kutta Tsipouras solver of order 5 Tsit5()
, which is recommended for most non-rigid problems.
Graph the obtained results of true solutions:
Solution of the optimisation problem¶
Describe the objective function obj_fun
, which calculates the difference between the true parameters $r_1$, $r_2$ and $r_3$ and the calculated values.
Out[0]:
obj_fun (generic function with 1 method)
We will need to minimise this function to find optimal solutions.
Create an optimisation problem using the function Model
and specify the name of the solver in brackets:
Out[0]:
A JuMP Model
Feasibility problem with:
Variables: 0
Model mode: AUTOMATIC
CachingOptimizer state: EMPTY_OPTIMIZER
Solver name: Ipopt
Set the model to "silent" mode to hide system messages:
Create a variable r
, containing three elements - $r_1$, $r_2$ and $r_3$, and set the bounds from 0.1 to 10:
Out[0]:
3-element Vector{VariableRef}:
r[1]
r[2]
r[3]
Since we are dealing with a complex user-defined nonlinear function obj_fun
, it must be registered with the function register
beforehand in order to be correctly integrated into the optimisation environment of the library JuMP
. In brackets specify the number of incoming arguments ($r_1$, $r_2$ and $r_3$) and enable automatic differentiation.
Create a non-linear target function to find the minimum values of $r_1$, $r_2$ and $r_3$ and apply the previously created function obj_fun
:
Solve the optimisation problem:
Store the optimised parameters in a variable:
Out[0]:
3-element Vector{Float64}:
2.5000119303476147
1.200000509788957
0.4499998880470981
Output the results of solving the problem. You can use the function round
and the argument digits
, to adjust the accuracy to the accuracy of the true parameter data.
Истинные параметры: [2.5, 1.2, 0.45]
Оптимизированные параметры: [2.5, 1.2, 0.45]
Optimisation with limited observations¶
Let us simulate a situation where we cannot observe all components $y$, but only the final results $y(5)$ and $y(6)$, and calculate the rates of all reactions based on this limited information.
Describe the goal function obj_fun_lim
, which is a copy of the function obj_fun
from the previous section, but returns only the results for $y(5)$ and $y(6)$.
Out[0]:
obj_fun_lim (generic function with 1 method)
Create an optimisation problem using the function Model
and give the name of the solver in brackets:
Out[0]:
A JuMP Model
Feasibility problem with:
Variables: 0
Model mode: AUTOMATIC
CachingOptimizer state: EMPTY_OPTIMIZER
Solver name: Ipopt
Set the model to "silent" mode to hide system messages:
Create a variable r
, containing three elements - $r_1$, $r_2$ and $r_3$, and set the bounds from 0.1 to 10:
Out[0]:
3-element Vector{VariableRef}:
r_lim[1]
r_lim[2]
r_lim[3]
Register the function obj_fun_lim
with the function register
:
Create a non-linear target function to find the minimum values of $r_1$, $r_2$ and $r_3$ and apply the previously created function obj_fun_lim
:
Solve the optimisation problem:
Output the results of solving the problem. You can use the function round
, to round off excessively accurate values if necessary.
Истинные параметры: [2.5, 1.2, 0.45]
Оптимизированные параметры (ограниченные): [1.8085855441520966, 1.5505236127674895, 0.5814611991591475]
Create an ODE problem using the function ODEProblem
, applying the optimised values r_lim
:
Visualise the results for $y_5$ and $y_6$:
Visualise and compare the results of the previously set true values and the obtained values $y$:
We can find that at the new optimised parameters obtained with limited observations, substances $C_1$ and $C_2$ are consumed more slowly and substance $C_3$ accumulates to a lesser extent. However, substances $C_4$, $C_5$ and $C_6$ have exactly the same dynamics at both found and true parameters.
{"id": "1f60b3ae-2785-4903-a6f6-d993e923467c", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(1)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(1)", "y": [1, 0.7999999433584235, 0.6666666938420879, 0.5714284106632236, 0.5000001136478838, 0.44444517227016656, 0.39999969737487057, 0.3636371555468035, 0.333333082707296, 0.3076938205939304, 0.2857145786336716, 0.26666717816518365, 0.250002011867563, 0.23529515672550946, 0.22222231061173275, 0.21052795329173468, 0.2000025836813243, 0.1904779076925807, 0.18181879391057523, 0.17391377745828035, 0.16666890631607587, 0.16000323622049542, 0.15384883066422692, 0.14815016074828835, 0.14285827416307828, 0.13793210440708442, 0.1333352882096781, 0.12903533069868015, 0.12500360540036098, 0.12121535423944008, 0.11764968753908701, 0.11428783467075349, 0.11111267919550065, 0.1081095940553919, 0.10526506870309807, 0.10256670906662385, 0.10000323754930796, 0.09756449302982276, 0.09524143086217442, 0.09302612287570358, 0.09091168324192778, 0.08889120309448036, 0.0869585987908414, 0.08510837790642482, 0.08333539968498269, 0.08163487503860534, 0.08000236654772133, 0.0784337884610974, 0.07692540669583865, 0.07547383883738827, 0.0740760541395277], "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 0, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x2", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(2)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(2)", "y": [1, 0.7999999433584235, 0.6666666938420879, 0.5714284106632236, 0.5000001136478838, 0.44444517227016656, 0.39999969737487057, 0.3636371555468035, 0.333333082707296, 0.3076938205939304, 0.2857145786336716, 0.26666717816518365, 0.250002011867563, 0.23529515672550946, 0.22222231061173275, 0.21052795329173468, 0.2000025836813243, 0.1904779076925807, 0.18181879391057523, 0.17391377745828035, 0.16666890631607587, 0.16000323622049542, 0.15384883066422692, 0.14815016074828835, 0.14285827416307828, 0.13793210440708442, 0.1333352882096781, 0.12903533069868015, 0.12500360540036098, 0.12121535423944008, 0.11764968753908701, 0.11428783467075349, 0.11111267919550065, 0.1081095940553919, 0.10526506870309807, 0.10256670906662385, 0.10000323754930796, 0.09756449302982276, 0.09524143086217442, 0.09302612287570358, 0.09091168324192778, 0.08889120309448036, 0.0869585987908414, 0.08510837790642482, 0.08333539968498269, 0.08163487503860534, 0.08000236654772133, 0.0784337884610974, 0.07692540669583865, 0.07547383883738827, 0.0740760541395277], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 255, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y2", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x3", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(3)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(3)", "y": [0, 0.183379286938851, 0.2790899203576965, 0.327722794599923, 0.3500273797882746, 0.3572764618566169, 0.3558486466928064, 0.3494492134782948, 0.340291507010028, 0.3296978831570716, 0.318485482768687, 0.3071393209442508, 0.295954690222042, 0.2851098317686844, 0.27469799106346227, 0.264764867449821, 0.2553308122080442, 0.24639559584527082, 0.237944463940566, 0.22995713963488418, 0.22241026409352, 0.21527970220033774, 0.20854054255777174, 0.20216722432016304, 0.19613547268435103, 0.19042263523563605, 0.18500732832736594, 0.17986951275791185, 0.17499049377066853, 0.17035292105405345, 0.1659407887415085, 0.16173909857800456, 0.1577341834126288, 0.15391362615676524, 0.1502657729013743, 0.14677973290757002, 0.14344537860662018, 0.14025334559994573, 0.13719503265912117, 0.13426260172587529, 0.131448936060769, 0.12874708613059938, 0.12615079803741558, 0.12365429064154801, 0.121252108616317, 0.11893912244803316, 0.11671052843599719, 0.11456184869249979, 0.11248893114282206, 0.11048794952523497, 0.10855540339099969], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 128, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y3", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x4", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(4)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(4)", "y": [1, 0.9833792302972747, 0.9457566141997844, 0.8991512052631467, 0.8500274934361585, 0.8017216341267835, 0.7558483440676771, 0.7130863690250984, 0.6736245897173241, 0.6373917037510022, 0.6042000614023587, 0.5738064991094346, 0.5459567020896052, 0.5204049884941941, 0.49692030167519524, 0.4752928207415559, 0.4553333958893687, 0.43687350353785176, 0.4197632578511415, 0.4038709170931648, 0.3890791704095961, 0.3752829384208334, 0.36238937322199893, 0.35031738506845167, 0.33899374684742956, 0.3283547396427207, 0.3183426165370443, 0.3089048434565923, 0.2999940991710298, 0.29156827529349383, 0.2835904762805958, 0.2760269332487583, 0.26884686260812973, 0.2620232202121574, 0.25553084160447265, 0.24934644197419414, 0.2434486161559284, 0.2378178386297688, 0.23243646352129588, 0.22728872460157915, 0.22236061930269704, 0.21763828922507997, 0.21310939682825725, 0.20876266854797307, 0.20458750830129993, 0.20057399748663873, 0.19671289498371877, 0.19299563715359747, 0.18941433783866096, 0.1859617883626235, 0.18263145753052767], "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 165, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y4", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x5", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(5)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(5)", "y": [0, 0.012087832511073041, 0.039449735127429546, 0.07334457799043878, 0.10907091386461203, 0.1442024479077938, 0.177564840678053, 0.20866445889083754, 0.237363934751037, 0.26371512454472573, 0.28785450079828456, 0.309958909738593, 0.3302133075711962, 0.34879637200422253, 0.3658761442362217, 0.3816052212788685, 0.39612116662591373, 0.4095465428815624, 0.42199035792644257, 0.4335484239322438, 0.44430605788393013, 0.45433968114848483, 0.4637168194749099, 0.4724964472229443, 0.4807318204745967, 0.4884692802598395, 0.4957508243366951, 0.5026146593042966, 0.5090952006028875, 0.5152230725138227, 0.5210251081595667, 0.5265258667281758, 0.5317477362849966, 0.5367103853002492, 0.5414321151967472, 0.5459298603824042, 0.5502191882502339, 0.55431429917835, 0.5582280265299666, 0.561971836653397, 0.5655559132344021, 0.5689903351090327, 0.5722840750339947, 0.5754453319651104, 0.5784818121445091, 0.5814007291006263, 0.5842088036482045, 0.5869122638882928, 0.5895168452082465, 0.5920277902817284, 0.5944498490687071], "zmax": null, "line": {"shape": "linear", "color": "rgba(128, 0, 128, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y5", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x6", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(6)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(6)", "y": [0, 0.004532937191652388, 0.014793650672786075, 0.027504216746414543, 0.04090159269922951, 0.054075917965422673, 0.06658681525426989, 0.07824917208406408, 0.08901147553163888, 0.09889317170427214, 0.1079454377993567, 0.11623459115197238, 0.12382999033919857, 0.13079863950158346, 0.13720355408858315, 0.1431019579795757, 0.14854543748471763, 0.1535799535805859, 0.15824638422241596, 0.16258065897459142, 0.1666147717064738, 0.1703773804306818, 0.1738938073030912, 0.1771861677086041, 0.18027443267797377, 0.18317598009743982, 0.18590655912626064, 0.1884804972391112, 0.1909107002260828, 0.19320865219268352, 0.19538441555983754, 0.19744720002306596, 0.19940540110687374, 0.20126639448759345, 0.20303704319878021, 0.20472369764340162, 0.20633219559383775, 0.20786786219188128, 0.20933550994873754, 0.2107394387450239, 0.21208346746290083, 0.2133713756658873, 0.21460652813774805, 0.21579199948691646, 0.21693067955419096, 0.2180252734127349, 0.2190783013680767, 0.2200920989581098, 0.2210688169530925, 0.22201042135564816, 0.2229186934007652], "zmax": null, "line": {"shape": "linear", "color": "rgba(165, 42, 42, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y6", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"yaxis5": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x5", "ticktext": ["0.0", "0.1", "0.2", "0.3", "0.4", "0.5", "0.6"], "range": [-0.017833495472061256, 0.6122833445407684], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6000000000000001], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.025080198308544768, 0.2943642461358997], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [{"y": 1, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(1)", "xanchor": "center"}, {"y": 1, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(2)", "xanchor": "center"}, {"y": 0.6666666666666666, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(3)", "xanchor": "center"}, {"y": 0.6666666666666666, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(4)", "xanchor": "center"}, {"y": 0.3333333333333333, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(5)", "xanchor": "center"}, {"y": 0.3333333333333333, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(6)", "xanchor": "center"}], "xaxis5": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y5", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis3": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x3", "ticktext": ["0.0", "0.1", "0.2", "0.3"], "range": [-0.01071829385569853, 0.36799475571231544], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.1, 0.2, 0.30000000000000004], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.35841353164187806, 0.627697579469233], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis3": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y3", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis2": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x2", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.046298335763713505, 1.0277777183758143], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.6917468649752113, 0.9610309128025663], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis4": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y4", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "showlegend": true, "height": 600, "xaxis6": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y6", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis6": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x6", "ticktext": ["0.00", "0.05", "0.10", "0.15", "0.20"], "range": [-0.006687560802022957, 0.22960625420278816], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.05000000000000001, 0.10000000000000002, 0.15000000000000002, 0.20000000000000004], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.025080198308544768, 0.2943642461358997], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "width": 1538.734375, "yaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.046298335763713505, 1.0277777183758143], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.6917468649752113, 0.9610309128025663], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis2": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y2", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis4": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x4", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.1581104012564435, 1.024521056274084], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.35841353164187806, 0.627697579469233], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "legend": {"x": 1, "traceorder": "normal", "yanchor": "auto", "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "borderwidth": 1, "bordercolor": "rgba(0, 0, 0, 1)", "y": 1, "bgcolor": "rgba(255, 255, 255, 1.000)", "tracegroupgap": 0, "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "xanchor": "auto"}}}
{"id": "b2e6a4f8-140b-4423-b043-5f63d63624b9", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(5)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(5)", "y": [0, 0.012087832511073041, 0.039449735127429546, 0.07334457799043878, 0.10907091386461203, 0.1442024479077938, 0.177564840678053, 0.20866445889083754, 0.237363934751037, 0.26371512454472573, 0.28785450079828456, 0.309958909738593, 0.3302133075711962, 0.34879637200422253, 0.3658761442362217, 0.3816052212788685, 0.39612116662591373, 0.4095465428815624, 0.42199035792644257, 0.4335484239322438, 0.44430605788393013, 0.45433968114848483, 0.4637168194749099, 0.4724964472229443, 0.4807318204745967, 0.4884692802598395, 0.4957508243366951, 0.5026146593042966, 0.5090952006028875, 0.5152230725138227, 0.5210251081595667, 0.5265258667281758, 0.5317477362849966, 0.5367103853002492, 0.5414321151967472, 0.5459298603824042, 0.5502191882502339, 0.55431429917835, 0.5582280265299666, 0.561971836653397, 0.5655559132344021, 0.5689903351090327, 0.5722840750339947, 0.5754453319651104, 0.5784818121445091, 0.5814007291006263, 0.5842088036482045, 0.5869122638882928, 0.5895168452082465, 0.5920277902817284, 0.5944498490687071], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 154, 250, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(6)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(6)", "y": [0, 0.004532937191652388, 0.014793650672786075, 0.027504216746414543, 0.04090159269922951, 0.054075917965422673, 0.06658681525426989, 0.07824917208406408, 0.08901147553163888, 0.09889317170427214, 0.1079454377993567, 0.11623459115197238, 0.12382999033919857, 0.13079863950158346, 0.13720355408858315, 0.1431019579795757, 0.14854543748471763, 0.1535799535805859, 0.15824638422241596, 0.16258065897459142, 0.1666147717064738, 0.1703773804306818, 0.1738938073030912, 0.1771861677086041, 0.18027443267797377, 0.18317598009743982, 0.18590655912626064, 0.1884804972391112, 0.1909107002260828, 0.19320865219268352, 0.19538441555983754, 0.19744720002306596, 0.19940540110687374, 0.20126639448759345, 0.20303704319878021, 0.20472369764340162, 0.20633219559383775, 0.20786786219188128, 0.20933550994873754, 0.2107394387450239, 0.21208346746290083, 0.2133713756658873, 0.21460652813774805, 0.21579199948691646, 0.21693067955419096, 0.2180252734127349, 0.2190783013680767, 0.2200920989581098, 0.2210688169530925, 0.22201042135564816, 0.2229186934007652], "zmax": null, "line": {"shape": "linear", "color": "rgba(227, 111, 71, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(5)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(5)", "y": [0, 0.01157459581661361, 0.038359465416702924, 0.07202951610317207, 0.10781407146368265, 0.1431559919121642, 0.17678582856253192, 0.20815033276283176, 0.2370889913578672, 0.26363839214457957, 0.287937988807305, 0.3101650507049462, 0.3305090587139423, 0.34915546237693584, 0.36627644952350846, 0.38202881922449655, 0.3965537403281214, 0.4099765905143542, 0.42240929214746525, 0.4339505326374777, 0.44468713783464353, 0.45469585889909186, 0.46404432666170453, 0.47279350751505916, 0.48099772609404745, 0.48870466527587425, 0.49595627311464224, 0.502790857537394, 0.5092416512302397, 0.5153391532558994, 0.5211112605587114, 0.5265832679646304, 0.5317778681812294, 0.5367151517976989, 0.5414128484441506, 0.5458881471040428, 0.5501558622070136, 0.5542295725212223, 0.5581219732911316, 0.5618448762375076, 0.56540920955742, 0.5688250179242422, 0.5721014624876507, 0.5752468208736254, 0.5782684871844503, 0.581173167859823, 0.5839676847339746, 0.5866581502983934, 0.5892502328860156, 0.5917492086313915, 0.5941599614706858], "zmax": null, "line": {"shape": "linear", "color": "rgba(62, 164, 78, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(6)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(6)", "y": [0, 0.004340584243859453, 0.014385166776331209, 0.02701175813340166, 0.040431308987039366, 0.053684867510977084, 0.06629637821950918, 0.07805836757147222, 0.08891064159694992, 0.09886692107007881, 0.10797950245758375, 0.11631486346619105, 0.12394406123861353, 0.13093664112879516, 0.13735717522131743, 0.14326446466890372, 0.14871144914115644, 0.15374514646840312, 0.15840752860876506, 0.16273560428581252, 0.16676193402464157, 0.17051530024509928, 0.17402106515624902, 0.1773020917389862, 0.1803787522514873, 0.18326892822920954, 0.18598835059404273, 0.1885513851853796, 0.1909704945786738, 0.19325711621443675, 0.19542171171387437, 0.1974737668788869, 0.19942179169206917, 0.20127332031671039, 0.2030350015338421, 0.2047132813768247, 0.20631371539860258, 0.20784139576723556, 0.20930108332093864, 0.21069720756808194, 0.21203386668719076, 0.21331482752694553, 0.21454352560618184, 0.21572306511389033, 0.216856218909217, 0.21794550197125434, 0.21899347255314983, 0.22000242289773123, 0.22097447868411696, 0.2219116185132759, 0.22281567390802767], "zmax": null, "line": {"shape": "linear", "color": "rgba(195, 113, 210, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"showlegend": true, "height": 600, "xaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.9973753280839895], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [], "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "yaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x", "ticktext": ["0.0", "0.1", "0.2", "0.3", "0.4", "0.5"], "range": [0, 0.6], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.025080198308544768, 0.9934383202099738], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "width": 1538.734375, "legend": {"x": 1, "traceorder": "normal", "yanchor": "auto", "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "borderwidth": 1, "bordercolor": "rgba(0, 0, 0, 1)", "y": 1, "bgcolor": "rgba(255, 255, 255, 1.000)", "tracegroupgap": 0, "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "xanchor": "auto"}}}
{"id": "5f163fc0-6e36-4365-9070-aa89b3174a4e", "data": [{"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(1)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(1)", "y": [1, 0.7999999433584235, 0.6666666938420879, 0.5714284106632236, 0.5000001136478838, 0.44444517227016656, 0.39999969737487057, 0.3636371555468035, 0.333333082707296, 0.3076938205939304, 0.2857145786336716, 0.26666717816518365, 0.250002011867563, 0.23529515672550946, 0.22222231061173275, 0.21052795329173468, 0.2000025836813243, 0.1904779076925807, 0.18181879391057523, 0.17391377745828035, 0.16666890631607587, 0.16000323622049542, 0.15384883066422692, 0.14815016074828835, 0.14285827416307828, 0.13793210440708442, 0.1333352882096781, 0.12903533069868015, 0.12500360540036098, 0.12121535423944008, 0.11764968753908701, 0.11428783467075349, 0.11111267919550065, 0.1081095940553919, 0.10526506870309807, 0.10256670906662385, 0.10000323754930796, 0.09756449302982276, 0.09524143086217442, 0.09302612287570358, 0.09091168324192778, 0.08889120309448036, 0.0869585987908414, 0.08510837790642482, 0.08333539968498269, 0.08163487503860534, 0.08000236654772133, 0.0784337884610974, 0.07692540669583865, 0.07547383883738827, 0.0740760541395277], "zmax": null, "line": {"shape": "linear", "color": "rgba(139, 0, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(1)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(1)", "y": [1, 0.8468414819288783, 0.7343669050629698, 0.6482665151978464, 0.580236833198852, 0.5251290835977023, 0.47958184845799856, 0.4413040909855373, 0.40868619376438814, 0.38055670633804456, 0.3560518561163346, 0.33451083981791896, 0.31542699519979095, 0.29840486331961524, 0.2831252469752114, 0.2693331667413937, 0.2568225545999562, 0.24542417547128717, 0.23499434071209443, 0.2254135726768211, 0.21658322978915473, 0.208418912858093, 0.2008489698887153, 0.1938100451816869, 0.18724703249706257, 0.18111307505428753, 0.17536831617820017, 0.1699765296082662, 0.16490704156354596, 0.16013195064008956, 0.1556259594128236, 0.15136637443555165, 0.1473331062409537, 0.14350866934058637, 0.13987793033733514, 0.13642611835621704, 0.13314066177671532, 0.13001012449604538, 0.12702385047281609, 0.12417196372702999, 0.12144536834008317, 0.11883574845476529, 0.11633556827525962, 0.11393807206714326, 0.11163728415738637, 0.10942782651839075, 0.10730416532473844, 0.10526138037473236, 0.10329492634799828, 0.10140058475735715, 0.09957446394882459], "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 0, 0, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x2", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(2)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(2)", "y": [1, 0.7999999433584235, 0.6666666938420879, 0.5714284106632236, 0.5000001136478838, 0.44444517227016656, 0.39999969737487057, 0.3636371555468035, 0.333333082707296, 0.3076938205939304, 0.2857145786336716, 0.26666717816518365, 0.250002011867563, 0.23529515672550946, 0.22222231061173275, 0.21052795329173468, 0.2000025836813243, 0.1904779076925807, 0.18181879391057523, 0.17391377745828035, 0.16666890631607587, 0.16000323622049542, 0.15384883066422692, 0.14815016074828835, 0.14285827416307828, 0.13793210440708442, 0.1333352882096781, 0.12903533069868015, 0.12500360540036098, 0.12121535423944008, 0.11764968753908701, 0.11428783467075349, 0.11111267919550065, 0.1081095940553919, 0.10526506870309807, 0.10256670906662385, 0.10000323754930796, 0.09756449302982276, 0.09524143086217442, 0.09302612287570358, 0.09091168324192778, 0.08889120309448036, 0.0869585987908414, 0.08510837790642482, 0.08333539968498269, 0.08163487503860534, 0.08000236654772133, 0.0784337884610974, 0.07692540669583865, 0.07547383883738827, 0.0740760541395277], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 139, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y2", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x2", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(2)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(2)", "y": [1, 0.8468414819288783, 0.7343669050629698, 0.6482665151978464, 0.580236833198852, 0.5251290835977023, 0.47958184845799856, 0.4413040909855373, 0.40868619376438814, 0.38055670633804456, 0.3560518561163346, 0.33451083981791896, 0.31542699519979095, 0.29840486331961524, 0.2831252469752114, 0.2693331667413937, 0.2568225545999562, 0.24542417547128717, 0.23499434071209443, 0.2254135726768211, 0.21658322978915473, 0.208418912858093, 0.2008489698887153, 0.1938100451816869, 0.18724703249706257, 0.18111307505428753, 0.17536831617820017, 0.1699765296082662, 0.16490704156354596, 0.16013195064008956, 0.1556259594128236, 0.15136637443555165, 0.1473331062409537, 0.14350866934058637, 0.13987793033733514, 0.13642611835621704, 0.13314066177671532, 0.13001012449604538, 0.12702385047281609, 0.12417196372702999, 0.12144536834008317, 0.11883574845476529, 0.11633556827525962, 0.11393807206714326, 0.11163728415738637, 0.10942782651839075, 0.10730416532473844, 0.10526138037473236, 0.10329492634799828, 0.10140058475735715, 0.09957446394882459], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 0, 255, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y2", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x3", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(3)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(3)", "y": [0, 0.183379286938851, 0.2790899203576965, 0.327722794599923, 0.3500273797882746, 0.3572764618566169, 0.3558486466928064, 0.3494492134782948, 0.340291507010028, 0.3296978831570716, 0.318485482768687, 0.3071393209442508, 0.295954690222042, 0.2851098317686844, 0.27469799106346227, 0.264764867449821, 0.2553308122080442, 0.24639559584527082, 0.237944463940566, 0.22995713963488418, 0.22241026409352, 0.21527970220033774, 0.20854054255777174, 0.20216722432016304, 0.19613547268435103, 0.19042263523563605, 0.18500732832736594, 0.17986951275791185, 0.17499049377066853, 0.17035292105405345, 0.1659407887415085, 0.16173909857800456, 0.1577341834126288, 0.15391362615676524, 0.1502657729013743, 0.14677973290757002, 0.14344537860662018, 0.14025334559994573, 0.13719503265912117, 0.13426260172587529, 0.131448936060769, 0.12874708613059938, 0.12615079803741558, 0.12365429064154801, 0.121252108616317, 0.11893912244803316, 0.11671052843599719, 0.11456184869249979, 0.11248893114282206, 0.11048794952523497, 0.10855540339099969], "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 100, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y3", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x3", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(3)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(3)", "y": [0, 0.13724333801064864, 0.2128884627439961, 0.2526922105655798, 0.271517786350426, 0.27803005697915634, 0.2773359447599603, 0.27248720868015863, 0.2653141732807946, 0.2569379804472969, 0.2480306526187765, 0.2390092460109436, 0.230119884847653, 0.22150303317465359, 0.21324112827996253, 0.20537354936520585, 0.19791225593076572, 0.1908540875459553, 0.18418883853167506, 0.17790029039988847, 0.17196769835155998, 0.16636992799771566, 0.1610856382933309, 0.15609435556426748, 0.15137648915740248, 0.1469133314406285, 0.1426870601131146, 0.13868122766895996, 0.13488081262754037, 0.131271779889574, 0.12784106831459044, 0.1245765907209308, 0.12146723388574746, 0.11850285854500407, 0.1156742196846719, 0.11297245316291521, 0.1103897606176682, 0.10791890721549648, 0.10555309291511344, 0.10328595246738023, 0.10111155541530575, 0.0990244060940467, 0.09701944363090753, 0.0950920419453407, 0.09323800974894599, 0.0914535036505316, 0.08973467738813683, 0.0880780464291427, 0.08648036208186886, 0.08493858809797526, 0.08344990067246165], "visible": true, "zmax": null, "line": {"shape": "linear", "color": "rgba(0, 128, 0, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y3", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x4", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(4)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(4)", "y": [1, 0.9833792302972747, 0.9457566141997844, 0.8991512052631467, 0.8500274934361585, 0.8017216341267835, 0.7558483440676771, 0.7130863690250984, 0.6736245897173241, 0.6373917037510022, 0.6042000614023587, 0.5738064991094346, 0.5459567020896052, 0.5204049884941941, 0.49692030167519524, 0.4752928207415559, 0.4553333958893687, 0.43687350353785176, 0.4197632578511415, 0.4038709170931648, 0.3890791704095961, 0.3752829384208334, 0.36238937322199893, 0.35031738506845167, 0.33899374684742956, 0.3283547396427207, 0.3183426165370443, 0.3089048434565923, 0.2999940991710298, 0.29156827529349383, 0.2835904762805958, 0.2760269332487583, 0.26884686260812973, 0.2620232202121574, 0.25553084160447265, 0.24934644197419414, 0.2434486161559284, 0.2378178386297688, 0.23243646352129588, 0.22728872460157915, 0.22236061930269704, 0.21763828922507997, 0.21310939682825725, 0.20876266854797307, 0.20458750830129993, 0.20057399748663873, 0.19671289498371877, 0.19299563715359747, 0.18941433783866096, 0.1859617883626235, 0.18263145753052767], "visible": true, "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 140, 0, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y4", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x4", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(4)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(4)", "y": [1, 0.9840848199395269, 0.9472553678069658, 0.9009587257634262, 0.8517546195492779, 0.8031591405768587, 0.7569177932179588, 0.7137912996656959, 0.6740003670451828, 0.6374946867853416, 0.6040825087351113, 0.5735200858288627, 0.545546880047444, 0.5199078964942689, 0.496366375255174, 0.47470671610659965, 0.45473481053072207, 0.43627826301724254, 0.4191831792437696, 0.4033138630767097, 0.38855092814071485, 0.37478884085580877, 0.3619346081820463, 0.3499044007459545, 0.3386235216544652, 0.32802640649491616, 0.318055376291315, 0.30865775727722633, 0.2997878541910865, 0.29140373052966373, 0.28346702772741417, 0.2759429651564826, 0.26880034012670134, 0.2620115278855906, 0.2555521500220072, 0.24939857151913242, 0.24353042239438372, 0.23792903171154203, 0.23257694338792972, 0.2274579161944104, 0.2225569237553891, 0.21786015454881216, 0.21335501190616732, 0.20903011401248411, 0.20487529390633252, 0.20088133016892254, 0.19703884271287544, 0.19333942680387525, 0.18977528842986732, 0.1863391728553326, 0.18302436462128643], "visible": true, "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 165, 0, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y4", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x5", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(5)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(5)", "y": [0, 0.012087832511073041, 0.039449735127429546, 0.07334457799043878, 0.10907091386461203, 0.1442024479077938, 0.177564840678053, 0.20866445889083754, 0.237363934751037, 0.26371512454472573, 0.28785450079828456, 0.309958909738593, 0.3302133075711962, 0.34879637200422253, 0.3658761442362217, 0.3816052212788685, 0.39612116662591373, 0.4095465428815624, 0.42199035792644257, 0.4335484239322438, 0.44430605788393013, 0.45433968114848483, 0.4637168194749099, 0.4724964472229443, 0.4807318204745967, 0.4884692802598395, 0.4957508243366951, 0.5026146593042966, 0.5090952006028875, 0.5152230725138227, 0.5210251081595667, 0.5265258667281758, 0.5317477362849966, 0.5367103853002492, 0.5414321151967472, 0.5459298603824042, 0.5502191882502339, 0.55431429917835, 0.5582280265299666, 0.561971836653397, 0.5655559132344021, 0.5689903351090327, 0.5722840750339947, 0.5754453319651104, 0.5784818121445091, 0.5814007291006263, 0.5842088036482045, 0.5869122638882928, 0.5895168452082465, 0.5920277902817284, 0.5944498490687071], "zmax": null, "line": {"shape": "linear", "color": "rgba(148, 0, 211, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y5", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x5", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(5)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(5)", "y": [0, 0.01157459581661361, 0.038359465416702924, 0.07202951610317207, 0.10781407146368265, 0.1431559919121642, 0.17678582856253192, 0.20815033276283176, 0.2370889913578672, 0.26363839214457957, 0.287937988807305, 0.3101650507049462, 0.3305090587139423, 0.34915546237693584, 0.36627644952350846, 0.38202881922449655, 0.3965537403281214, 0.4099765905143542, 0.42240929214746525, 0.4339505326374777, 0.44468713783464353, 0.45469585889909186, 0.46404432666170453, 0.47279350751505916, 0.48099772609404745, 0.48870466527587425, 0.49595627311464224, 0.502790857537394, 0.5092416512302397, 0.5153391532558994, 0.5211112605587114, 0.5265832679646304, 0.5317778681812294, 0.5367151517976989, 0.5414128484441506, 0.5458881471040428, 0.5501558622070136, 0.5542295725212223, 0.5581219732911316, 0.5618448762375076, 0.56540920955742, 0.5688250179242422, 0.5721014624876507, 0.5752468208736254, 0.5782684871844503, 0.581173167859823, 0.5839676847339746, 0.5866581502983934, 0.5892502328860156, 0.5917492086313915, 0.5941599614706858], "zmax": null, "line": {"shape": "linear", "color": "rgba(238, 130, 238, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y5", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x6", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Истинное y(6)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Истинное y(6)", "y": [0, 0.004532937191652388, 0.014793650672786075, 0.027504216746414543, 0.04090159269922951, 0.054075917965422673, 0.06658681525426989, 0.07824917208406408, 0.08901147553163888, 0.09889317170427214, 0.1079454377993567, 0.11623459115197238, 0.12382999033919857, 0.13079863950158346, 0.13720355408858315, 0.1431019579795757, 0.14854543748471763, 0.1535799535805859, 0.15824638422241596, 0.16258065897459142, 0.1666147717064738, 0.1703773804306818, 0.1738938073030912, 0.1771861677086041, 0.18027443267797377, 0.18317598009743982, 0.18590655912626064, 0.1884804972391112, 0.1909107002260828, 0.19320865219268352, 0.19538441555983754, 0.19744720002306596, 0.19940540110687374, 0.20126639448759345, 0.20303704319878021, 0.20472369764340162, 0.20633219559383775, 0.20786786219188128, 0.20933550994873754, 0.2107394387450239, 0.21208346746290083, 0.2133713756658873, 0.21460652813774805, 0.21579199948691646, 0.21693067955419096, 0.2180252734127349, 0.2190783013680767, 0.2200920989581098, 0.2210688169530925, 0.22201042135564816, 0.2229186934007652], "zmax": null, "line": {"shape": "linear", "color": "rgba(165, 42, 42, 1.000)", "dash": "solid", "width": 1}, "zaxis": null, "yaxis": "y6", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}, {"xaxis": "x6", "mode": "lines", "x": [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5], "showlegend": true, "name": "Оптимизированное y(6)", "colorbar": {"title": {"text": ""}}, "zmin": null, "z": null, "legendgroup": "Оптимизированное y(6)", "y": [0, 0.004340584243859453, 0.014385166776331209, 0.02701175813340166, 0.040431308987039366, 0.053684867510977084, 0.06629637821950918, 0.07805836757147222, 0.08891064159694992, 0.09886692107007881, 0.10797950245758375, 0.11631486346619105, 0.12394406123861353, 0.13093664112879516, 0.13735717522131743, 0.14326446466890372, 0.14871144914115644, 0.15374514646840312, 0.15840752860876506, 0.16273560428581252, 0.16676193402464157, 0.17051530024509928, 0.17402106515624902, 0.1773020917389862, 0.1803787522514873, 0.18326892822920954, 0.18598835059404273, 0.1885513851853796, 0.1909704945786738, 0.19325711621443675, 0.19542171171387437, 0.1974737668788869, 0.19942179169206917, 0.20127332031671039, 0.2030350015338421, 0.2047132813768247, 0.20631371539860258, 0.20784139576723556, 0.20930108332093864, 0.21069720756808194, 0.21203386668719076, 0.21331482752694553, 0.21454352560618184, 0.21572306511389033, 0.216856218909217, 0.21794550197125434, 0.21899347255314983, 0.22000242289773123, 0.22097447868411696, 0.2219116185132759, 0.22281567390802767], "zmax": null, "line": {"shape": "linear", "color": "rgba(255, 165, 0, 1.000)", "dash": "dash", "width": 1}, "zaxis": null, "yaxis": "y6", "metadata": {"smartZoomParams": {"maxCount": 51, "minCount": 25000, "currentCount": 51}, "shouldEnableSmartZoom": false}, "type": "scatter"}], "config": {"yaxis5": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x5", "ticktext": ["0.0", "0.1", "0.2", "0.3", "0.4", "0.5", "0.6"], "range": [-0.017833495472061256, 0.6122833445407684], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6000000000000001], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.025080198308544768, 0.2943642461358997], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "annotations": [{"y": 1, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(1)", "xanchor": "center"}, {"y": 1, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(2)", "xanchor": "center"}, {"y": 0.6666666666666666, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(3)", "xanchor": "center"}, {"y": 0.6666666666666666, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(4)", "xanchor": "center"}, {"y": 0.3333333333333333, "yanchor": "top", "rotation": 0, "x": 0.2574074074074074, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(5)", "xanchor": "center"}, {"y": 0.3333333333333333, "yanchor": "top", "rotation": 0, "x": 0.7603703703703704, "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 20}, "yref": "paper", "xref": "paper", "showarrow": false, "text": "y(6)", "xanchor": "center"}], "xaxis5": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y5", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis3": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x3", "ticktext": ["0.0", "0.1", "0.2", "0.3"], "range": [-0.01071829385569853, 0.36799475571231544], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.1, 0.2, 0.30000000000000004], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.35841353164187806, 0.627697579469233], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis3": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y3", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.020402449693788276, 0.49441236512102654], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis2": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x2", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.046298335763713505, 1.0277777183758143], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.6917468649752113, 0.9610309128025663], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis4": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y4", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "showlegend": true, "height": 600, "xaxis6": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y6", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis6": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x6", "ticktext": ["0.00", "0.05", "0.10", "0.15", "0.20"], "range": [-0.006687560802022957, 0.22960625420278816], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 0.05000000000000001, 0.10000000000000002, 0.15000000000000002, 0.20000000000000004], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.025080198308544768, 0.2943642461358997], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "width": 1538.734375, "yaxis": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.046298335763713505, 1.0277777183758143], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.6917468649752113, 0.9610309128025663], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "xaxis2": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "y2", "ticktext": ["0", "1", "2", "3", "4", "5"], "range": [0, 5], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0, 1, 2, 3, 4, 5], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.5233654126567512, 0.9973753280839894], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "yaxis4": {"showline": true, "showticklabels": true, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickfont": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "tickmode": "array", "anchor": "x4", "ticktext": ["0.2", "0.4", "0.6", "0.8", "1.0"], "range": [0.1581104012564435, 1.024521056274084], "tickcolor": "rgb(0, 0, 0)", "gridwidth": 0.5, "visible": true, "tickvals": [0.2, 0.4, 0.6000000000000001, 0.8, 1], "showgrid": true, "linecolor": "rgba(0, 0, 0, 1)", "zerolinecolor": "rgba(0, 0, 0, 1)", "tickangle": 0, "zeroline": false, "mirror": false, "domain": [0.35841353164187806, 0.627697579469233], "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "ticks": "inside", "type": "linear"}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"t": 20, "b": 20, "r": 0, "l": 0}, "legend": {"x": 1, "traceorder": "normal", "yanchor": "auto", "font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 11}, "borderwidth": 1, "bordercolor": "rgba(0, 0, 0, 1)", "y": 1, "bgcolor": "rgba(255, 255, 255, 1.000)", "tracegroupgap": 0, "title": {"font": {"family": "sans-serif", "color": "rgba(0, 0, 0, 1)", "size": 15}, "text": ""}, "xanchor": "auto"}}}