This notebook serves as a demonstration of the CausalEffectEstimation module for estimating causal effects on both generated and real datasets.
import pyagrum.lib.discretizer as disc
import pyagrum.lib.notebook as gnb
import pyagrum.explain as gexpl
import pyagrum.causalEffectEstimation as gcee
To estimate the Average Causal Effects (ACE) from data generated under conditions resembling a Randomized Controlled Trial (RCT), we define two generative models.
Consider two generative models:
A linear generative model described by the equation:
Y = 3 X 1 + 2 X 2 − 2 X 3 − 0.8 X 4 + T ( 2 X 1 + 5 X 3 + 3 X 4 ) Y = 3X_1 + 2X_2 -2X_3 -0.8X_4 + T(2X_1 + 5X_3 +3X_4)
And a non-linear generative model described by the equation:
Y = 3 X 1 + 2 X 2 2 − 2 X 3 − 0.8 X 4 + 10 T Y = 3X_1 + 2X_2^2 -2X_3 -0.8X_4 +10T
Where ( X 1 , X 2 , X 3 , X 4 ) ∼ N 4 ( ( 1 , 1 , 1 , 1 ) , I 4 ) (X_1,X_2,X_3,X_4) \sim \mathcal{N}_4((1,1,1,1), I_4) , T ∼ B e r ( 1 / 2 ) T \sim \mathcal{Ber}(1/2) and ( X 1 , X 2 , X 3 , X 4 , T ) (X_1,X_2,X_3,X_4,T) are jointly independent in both of the models.
Data from the models can be obtatined by the functions given below.
def linear_simulation (n: int = 100000 , sigma: float = 1 ) -> pd.DataFrame:
Returns n observations from the linear model with normally distributed
noise with expected value 0 and standard deviation sigma.
X1 = np.random.normal( 1 , 1 , n)
X2 = np.random.normal( 1 , 1 , n)
X3 = np.random.normal( 1 , 1 , n)
X4 = np.random.normal( 1 , 1 , n)
epsilon = np.random.normal( 0 , sigma, n)
T = np.random.binomial( 1 , 0.5 , n)
Y = 3 * X1 + 2 * X2 - 2 * X3 - 0.8 * X4 + T * ( 2 * X1 + 5 * X3 + 3 * X4) + epsilon
d = np.array([T, X1, X2, X3, X4, Y])
df_data = pd.DataFrame( data = d.T, columns = [ "T" , "X1" , "X2" , "X3" , "X4" , "Y" ])
df_data[ "T" ] = df_data[ "T" ].astype( int )
def non_linear_simulation (n: int = 100000 , sigma: float = 1 ) -> pd.DataFrame:
Returns n observations from the non-linear model with normally distributed
noise with expected value 0 and standard deviation sigma.
X1 = np.random.normal( 1 , 1 , n)
X2 = np.random.normal( 1 , 1 , n)
X3 = np.random.normal( 1 , 1 , n)
X4 = np.random.normal( 1 , 1 , n)
epsilon = np.random.normal( 0 , sigma, n)
T = np.random.binomial( 1 , 0.5 , n)
Y = 3 * X1 + 2 * X2 ** 2 - 2 * X3 - 0.8 * X4 + 10 * T + epsilon
d = np.array([T, X1, X2, X3, X4, Y])
df_data = pd.DataFrame( data = d.T, columns = [ "T" , "X1" , "X2" , "X3" , "X4" , "Y" ])
df_data[ "T" ] = df_data[ "T" ].astype( int )
Furthermore, the expected values of Y ( 0 ) Y(0) and Y ( 1 ) Y(1) can be explicitly calculated, providing us the theoretical ACE of τ = 10 \tau = 10 which will serve as a point of reference for the estimations.
We will explore how the CausalEffectEstimation module can estimate the causal effect of T T on Y Y in both of the generated datasets.
First, genereate the data using the previously defined functions, and specify the causal graph of the variables. A single graph will be applicable to both datasets, as they share the same variables and causal structure.
linear_data = linear_simulation()
non_linear_data = non_linear_simulation()
bn = gum.fastBN( "Y<-T; Y<-X1; Y<-X2; Y<-X3; Y<-X4" )
causal_model = gum.CausalModel(bn)
gnb.showCausalModel(causal_model, size = "10" )
If the CausalBNEstimator estimation method is not employed for estimation process, the model generated using gum.fastBN will suffice, as only the graph structure of the Causal Bayesian Network will be used for causal identification.
However, if the Causal Bayesian Network estimator is utilized, it will be necessary to provide a gum.CausalModel object with appropriate discretization, as the Conditional Probability Tables of the model will be used for estimation. Here we use the discretizer module to perform this task, the arcs are added manually.
Selecting an optimal discretization is crucial: a coarse discretization may lead to poor estimation due to its inability to capture fine variations in the distribution, while an overly fine discretization may result in too many parameters, making it difficult for the parameter learning algorithm to accurately estimate the distribution. Therefore, the discretization should strike a balance, being neither too coarse nor too fine.
discretizer = disc.Discretizer( defaultDiscretizationMethod = "uniform" , defaultNumberOfBins = 20 )
disc_bn = discretizer.discretizedTemplate(linear_data)
disc_bn.beginTopologyTransformation()
for node in { "T" , "X1" , "X2" , "X3" , "X4" }:
disc_bn.addArc(node, "Y" )
disc_bn.endTopologyTransformation()
disc_causal_model = gum.CausalModel(disc_bn)
print (disc_bn.variable( id ))
X1:Discretized(<(-3.5643869716843213;-3.109312457102246[,[-3.109312457102246;-2.6542379425201705[,[-2.6542379425201705;-2.199163427938095[,[-2.199163427938095;-1.7440889133560198[,[-1.7440889133560198;-1.2890143987739444[,[-1.2890143987739444;-0.833939884191869[,[-0.833939884191869;-0.37886536960979367[,[-0.37886536960979367;0.0762091449722817[,[0.0762091449722817;0.5312836595543571[,[0.5312836595543571;0.9863581741364325[,[0.9863581741364325;1.4414326887185078[,[1.4414326887185078;1.8965072033005832[,[1.8965072033005832;2.3515817178826586[,[2.3515817178826586;2.806656232464734[,[2.806656232464734;3.2617307470468093[,[3.2617307470468093;3.7168052616288847[,[3.7168052616288847;4.17187977621096[,[4.17187977621096;4.626954290793035[,[4.626954290793035;5.08202880537511[,[5.08202880537511;5.537103319957185)>)
X2:Discretized(<(-4.441687990260335;-3.9481321348423655[,[-3.9481321348423655;-3.4545762794243955[,[-3.4545762794243955;-2.961020424006426[,[-2.961020424006426;-2.467464568588456[,[-2.467464568588456;-1.9739087131704864[,[-1.9739087131704864;-1.480352857752517[,[-1.480352857752517;-0.9867970023345469[,[-0.9867970023345469;-0.4932411469165774[,[-0.4932411469165774;0.0003147085013921469[,[0.0003147085013921469;0.4938705639193621[,[0.4938705639193621;0.9874264193373321[,[0.9874264193373321;1.4809822747553012[,[1.4809822747553012;1.9745381301732712[,[1.9745381301732712;2.468093985591241[,[2.468093985591241;2.9616498410092102[,[2.9616498410092102;3.4552056964271802[,[3.4552056964271802;3.9487615518451493[,[3.9487615518451493;4.442317407263119[,[4.442317407263119;4.935873262681089[,[4.935873262681089;5.429429118099059)>)
X3:Discretized(<(-3.29718341748295;-2.8557020243544247[,[-2.8557020243544247;-2.4142206312259[,[-2.4142206312259;-1.9727392380973745[,[-1.9727392380973745;-1.5312578449688494[,[-1.5312578449688494;-1.0897764518403243[,[-1.0897764518403243;-0.648295058711799[,[-0.648295058711799;-0.2068136655832742[,[-0.2068136655832742;0.23466772754525111[,[0.23466772754525111;0.6761491206737764[,[0.6761491206737764;1.1176305138023013[,[1.1176305138023013;1.5591119069308261[,[1.5591119069308261;2.000593300059352[,[2.000593300059352;2.4420746931878767[,[2.4420746931878767;2.8835560863164016[,[2.8835560863164016;3.3250374794449273[,[3.3250374794449273;3.766518872573452[,[3.766518872573452;4.208000265701977[,[4.208000265701977;4.649481658830503[,[4.649481658830503;5.090963051959028[,[5.090963051959028;5.5324444450875525)>)
X4:Discretized(<(-3.3879472098791785;-2.9335217298098595[,[-2.9335217298098595;-2.479096249740541[,[-2.479096249740541;-2.024670769671222[,[-2.024670769671222;-1.570245289601903[,[-1.570245289601903;-1.1158198095325842[,[-1.1158198095325842;-0.6613943294632652[,[-0.6613943294632652;-0.20696884939394655[,[-0.20696884939394655;0.2474566306753725[,[0.2474566306753725;0.7018821107446911[,[0.7018821107446911;1.1563075908140101[,[1.1563075908140101;1.6107330708833292[,[1.6107330708833292;2.065158550952648[,[2.065158550952648;2.5195840310219673[,[2.5195840310219673;2.9740095110912854[,[2.9740095110912854;3.4284349911606045[,[3.4284349911606045;3.8828604712299235[,[3.8828604712299235;4.3372859512992425[,[4.3372859512992425;4.791711431368561[,[4.791711431368561;5.246136911437881[,[5.246136911437881;5.700562391507199)>)
Y:Discretized(<(-16.678566131823267;-13.748218943357312[,[-13.748218943357312;-10.817871754891357[,[-10.817871754891357;-7.8875245664254[,[-7.8875245664254;-4.957177377959445[,[-4.957177377959445;-2.0268301894934897[,[-2.0268301894934897;0.9035169989724672[,[0.9035169989724672;3.8338641874384223[,[3.8338641874384223;6.764211375904377[,[6.764211375904377;9.694558564370332[,[9.694558564370332;12.624905752836288[,[12.624905752836288;15.555252941302243[,[15.555252941302243;18.4856001297682[,[18.4856001297682;21.415947318234153[,[21.415947318234153;24.34629450670011[,[24.34629450670011;27.276641695166063[,[27.276641695166063;30.20698888363202[,[30.20698888363202;33.13733607209798[,[33.13733607209798;36.06768326056393[,[36.06768326056393;38.99803044902989[,[38.99803044902989;41.92837763749584)>)
We are now prepared to instantiate the CausalEffectEstimation object for both datasets.
linear_cee = gcee.CausalEffectEstimation(linear_data, disc_causal_model)
<pyagrum.causalEffectEstimation._CausalEffectEstimation.CausalEffectEstimation object at 0x117750ad0>
Dataframe : <pandas.DataFrame object at 0x10fed7620>
- columns : Index(['T', 'X1', 'X2', 'X3', 'X4', 'Y'], dtype='str')
- memory usage : 4.800132 MB
Causal Model : <pyagrum.pyagrum.CausalModel; proxy of <Swig Object of type 'gum::CausalModel< double > *' at 0x1176e49b0> >
- names : {'X2', 'X3', 'X1', 'X4', 'Y', 'T'}
- causal BN : {0<T>,1<X1>,2<X2>,3<X3>,4<X4>,5<Y>} , {2->5,3->5,1->5,4->5,0->5}
- observ. BN : BN{nodes: 6, arcs: 5, domainSize: 10^6.80618, dim: 6080077, mem: 48Mo 848Ko 656o}
non_linear_cee = gcee.CausalEffectEstimation(non_linear_data, disc_causal_model)
<pyagrum.causalEffectEstimation._CausalEffectEstimation.CausalEffectEstimation object at 0x1168c6850>
Dataframe : <pandas.DataFrame object at 0x1168c7110>
- columns : Index(['T', 'X1', 'X2', 'X3', 'X4', 'Y'], dtype='str')
- memory usage : 4.800132 MB
Causal Model : <pyagrum.pyagrum.CausalModel; proxy of <Swig Object of type 'gum::CausalModel< double > *' at 0x1176e49b0> >
- names : {'X2', 'X3', 'X1', 'X4', 'Y', 'T'}
- causal BN : {0<T>,1<X1>,2<X2>,3<X3>,4<X4>,5<Y>} , {2->5,3->5,1->5,4->5,0->5}
- observ. BN : BN{nodes: 6, arcs: 5, domainSize: 10^6.80618, dim: 6080077, mem: 48Mo 848Ko 656o}
The subsequent step involves identifying the causal criterion to be used for estimation. This is crucial, as most estimators rely on strong assumptions regarding the underlying causal structure of the data-generating process. Incorrect specification of the adjustment may compromise the guarantee of asymptotic normality.
linear_cee.identifyAdjustmentSet( intervention = "T" , outcome = "Y" )
non_linear_cee.identifyAdjustmentSet( intervention = "T" , outcome = "Y" , verbose = False )
Randomized Controlled Trial adjustment found.
Supported estimators include:
If the outcome variable is a cause of other covariates in the causal graph,
Backdoor estimators may also be used.
'Randomized Controlled Trial'
Consistent with the data generation, the adjustment identified is the Randomized Control Trial adjustment. This yields a list of the various estimators supported by this adjustment.
Once the adjustment is identified, we can proceed to estimation using the supported estimators. First, the estimator must be fitted to the data.
The estimation is obtained by calling the estimateCausalEffect method.
linear_tau_hat = linear_cee.estimateCausalEffect()
non_linear_tau_hat = non_linear_cee.estimateCausalEffect()
print ( f "ACE linear = { linear_tau_hat } , MAPE = {abs ((linear_tau_hat - 10 ) * 10 ) } %" )
print ( f "ACE non linear = { non_linear_tau_hat } , MAPE = {abs ((non_linear_tau_hat - 10 ) * 10 ) } %" )
ACE linear = 10.015848844809387, MAPE = 0.15848844809386975 %
ACE non linear = 10.02256525004448, MAPE = 0.22565250044479512 %
The difference-in-means estimator, which is the simplest estimator for the ACE, yields mostly accurate results. This is expected in an RCT environment where the treatment is independent of confounders, making intervention equivalent to observation.
If the user wish to apply an alternative adjustment, they may specify their own set of variables for each component of the adjustment. However, please note that such custom adjustments do not guarantee unbiased estimation and may not ensure an error-free estimation process.
linear_cee.useBackdoorAdjustment( intervention = "T" , outcome = "Y" , confounders = { "X1" , "X2" , "X3" , "X4" })
non_linear_cee.useBackdoorAdjustment( intervention = "T" , outcome = "Y" , confounders = { "X1" , "X2" , "X3" , "X4" })
non_linear_cee.fitSLearner()
linear_tau_hat = linear_cee.estimateCausalEffect()
non_linear_tau_hat = non_linear_cee.estimateCausalEffect()
print ( f "ACE linear = { linear_tau_hat } , MAPE = {abs ((linear_tau_hat - 10 ) * 10 ) } %" )
print ( f "ACE non linear = { non_linear_tau_hat } , MAPE = {abs ((non_linear_tau_hat - 10 ) * 10 ) } %" )
ACE linear = 10.038921959040907, MAPE = 0.3892195904090734 %
ACE non linear = 10.011560423132721, MAPE = 0.11560423132721098 %
In this case, RCT adjustment also supports Backdoor adjustment, we thus get mostly accurate estimations. Let’s see how the estimation would be if we specify an uncompatible adjustment.
We will use the frontdoor adjustment to illustrate the behaviours of incorrect specification.
linear_cee.useFrontdoorAdjustment( intervention = "T" , outcome = "Y" , mediators = { "X1" , "X2" , "X3" , "X4" })
non_linear_cee.useFrontdoorAdjustment( intervention = "T" , outcome = "Y" , mediators = { "X1" , "X2" , "X3" , "X4" })
linear_cee.fitSimplePlugIn()
non_linear_cee.fitSimplePlugIn()
linear_tau_hat = linear_cee.estimateCausalEffect()
non_linear_tau_hat = non_linear_cee.estimateCausalEffect()
print ( f "ACE linear = { linear_tau_hat } , MAPE = {abs ((linear_tau_hat - 10 ) * 10 ) } %" )
print ( f "ACE non linear = { non_linear_tau_hat } , MAPE = {abs ((non_linear_tau_hat - 10 ) * 10 ) } %" )
ACE linear = -0.023219624375617063, MAPE = 100.23219624375616 %
ACE non linear = 0.010622858856612984, MAPE = 99.89377141143387 %
As anticipated, using an incorrect adjustment set results in a heavily biased estimation. In this case, the ACE is close to zero, indicating that the estimator incorrectly predicts no causal effect of T T on Y Y .
To fully utilize the causal model within the estimation process, we will now use the Conditional Probability Tables of the Causal Bayesian Network via the CausalBNEstimator, rather than relying solely on the underlying causal graph. The procedure will follow the same methodology as previously applied.
linear_cee.identifyAdjustmentSet( intervention = "T" , outcome = "Y" , verbose = False )
non_linear_cee.identifyAdjustmentSet( intervention = "T" , outcome = "Y" , verbose = False )
'Randomized Controlled Trial'
linear_cee.fitCausalBNEstimator()
non_linear_cee.fitCausalBNEstimator()
linear_tau_hat = linear_cee.estimateCausalEffect()
non_linear_tau_hat = non_linear_cee.estimateCausalEffect()
print ( f "ACE linear = { linear_tau_hat } , MAPE = {abs ((linear_tau_hat - 10 ) * 10 ) } %" )
print ( f "ACE non linear = { non_linear_tau_hat } , MAPE = {abs ((non_linear_tau_hat - 10 ) * 10 ) } %" )
ACE linear = 9.210563487180638, MAPE = 7.894365128193623 %
ACE non linear = 9.136945329244515, MAPE = 8.63054670755485 %
In this section, we will estimate the ACE under real-world RCT conditions.
The data used in this notbook come from the Tennessee Student/Teacher Achievement Ratio (STAR) trial . This randomized controlled trial was designed to assess the effects of smaller class sizes in primary schools (T) on students’ academic performance (Y).
The covariates in this study include:
gender
age
g1freelunch being the number of lunchs provided to the child per day
g1surban the localisation of the school (inner city or rural)
ethnicity
## Load data - read everything as a string and then cast
star_df = pd.read_csv( "./res/STAR_data.csv" , sep = "," , dtype = str )
star_df = star_df.rename( columns = { "race" : "ethnicity" })
star_df = star_df.fillna({ "g1freelunch" : 0 , "g1surban" : 0 })
star_df = star_df.dropna( subset = drop_star_l, how = "any" )
## Cast value types before processing
star_df[ "gender" ] = star_df[ "gender" ].astype( int )
star_df[ "ethnicity" ] = star_df[ "ethnicity" ].astype( int )
star_df[ "g1freelunch" ] = star_df[ "g1freelunch" ].astype( int )
star_df[ "g1surban" ] = star_df[ "g1surban" ].astype( int )
star_df[ "g1classtype" ] = star_df[ "g1classtype" ].astype( int )
## Keep only class type 1 and 2 (in the initial trial,
## 3 class types where attributed and the third one was big classes
## but with a teaching assistant)
star_df = star_df[ ~ (star_df[ "g1classtype" ] == 3 )].reset_index( drop = True )
star_df[ "g1tlistss" ].astype( int ) + star_df[ "g1treadss" ].astype( int ) + star_df[ "g1tmathss" ].astype( int )
star_df[ "T" ] = star_df[ "g1classtype" ].apply( lambda x: 0 if x == 2 else 1 )
## Transform date to obtain age (Notice: if na --> date is NaT)
star_df[ "date" ] = pd.to_datetime(
star_df[ "birthyear" ] + "/" + star_df[ "birthmonth" ] + "/" + star_df[ "birthday" ], yearfirst = True , errors = "coerce"
star_df[ "age" ] = np.datetime64( "1985-01-01" ) - star_df[ "date" ]
star_df[ "age" ] = star_df[ "age" ].dt.days / 365.25
## Keep only covariates we consider predictive of the outcome
star_covariates_l = [ "gender" , "ethnicity" , "age" , "g1freelunch" , "g1surban" ]
star_df = star_df[[ "Y" , "T" ] + star_covariates_l]
## Map numerical to categorical
star_df[ "gender" ] = star_df[ "gender" ].apply( lambda x: "Girl" if x == 2 else "Boy" ).astype( "category" )
.map({ 1 : "White" , 2 : "Black" , 3 : "Asian" , 4 : "Hispanic" , 5 : "Nat_American" , 6 : "Other" })
star_df[ "g1surban" ].map({ 1 : "Inner_city" , 2 : "Suburban" , 3 : "Rural" , 4 : "Urban" }).astype( "category" )
Y
T
age
g1freelunch
count
4215.000000
4215.000000
4215.000000
4215.000000
mean
540.095848
0.428233
4.879872
1.471886
std
39.267221
0.494881
0.465104
0.534171
min
439.333333
0.000000
3.129363
0.000000
25%
511.333333
0.000000
4.525667
1.000000
50%
537.333333
0.000000
4.818617
1.000000
75%
566.000000
1.000000
5.111567
2.000000
max
670.666667
1.000000
7.225188
2.000000
It appears that there are more units in the control group. However, the control and treatment groups appear to be similar in distribution, indicating that the ignorability assumption is likely satisfied.
We will explore how the CausalEffectEstimation module can estimate the causal effect of T T on Y Y in both of the given datasets.
In the absence of a predefined causal structure, structure learning is utilized to uncover the underlying relationships between the variables in the dataset. To facilitate this process, a slice order will be imposed on the variables. This approach will serve as the foundation for deriving the necessary causal structure for subsequent analysis.
To enable the application of structure learning algorithms, the variables will first be discretized using the discretizer module. Following this, the causal structure will be derived using gum.BNLearner.
discretizer = disc.Discretizer( defaultDiscretizationMethod = "uniform" )
discretizer.setDiscretizationParameters( "age" , "uniform" , 24 )
discretizer.setDiscretizationParameters( "Y" , "uniform" , 30 )
template = discretizer.discretizedTemplate(star_df)
learner = gum.BNLearner(star_df, template)
learner.useNMLCorrection()
learner.useSmoothingPrior( 1e-6 )
[ "T" , "ethnicity" , "gender" , "age" ],
gnb.sideBySide(gexpl.getInformation(bn, size = "50" ), gnb.getInference(bn, size = "50" ))
Filename : /var/folders/r1/pj4vdx_n4_d_xpsb04kzf97r0000gp/T/tmp_p1hx6gx.csv
Variables : Y[30], T[2], gender[2], ethnicity[6], age[24], g1freelunch[3], g1surban[4]
Constraint Slice Order : {ethnicity:0, T:0, g1surban:1, age:0, gender:0, g1freelunch:1, Y:2}
structs
Inference in 0.15ms
Y
2026-08-18T12:00:17.304920
image/svg+xml
Matplotlib v3.11.1,
T
2026-08-18T12:00:17.340048
image/svg+xml
Matplotlib v3.11.1,
T->Y
gender
2026-08-18T12:00:17.363819
image/svg+xml
Matplotlib v3.11.1,
ethnicity
2026-08-18T12:00:17.396064
image/svg+xml
Matplotlib v3.11.1,
g1freelunch
2026-08-18T12:00:17.475512
image/svg+xml
Matplotlib v3.11.1,
ethnicity->g1freelunch
g1surban
2026-08-18T12:00:17.501102
image/svg+xml
Matplotlib v3.11.1,
ethnicity->g1surban
age
2026-08-18T12:00:17.443997
image/svg+xml
Matplotlib v3.11.1,
g1freelunch->Y
g1surban->g1freelunch
This initial approach appears promising, as the inferred causal relationships are somewhat consistent with what might be expected from an non-expert perspective.
Now given the causal structure, we are set to instanciate the CausalEffectEstimation class to perform estimation.
causal_model = gum.CausalModel(bn)
cee = gcee.CausalEffectEstimation(star_df, causal_model)
The next step involves formal causal identification. As expected, we identify the RCT adjustment, consistent with the experimental design.
cee.identifyAdjustmentSet( intervention = "T" , outcome = "Y" )
Randomized Controlled Trial adjustment found.
Supported estimators include:
If the outcome variable is a cause of other covariates in the causal graph,
Backdoor estimators may also be used.
'Randomized Controlled Trial'
Once the ajustment identified, we can use the appropiate estimators for estimation.
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
cee.fitCausalBNEstimator()
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
Let’s evaluate how the backdoor adjustment estimators compare to the previously obtained estimates. In this analysis, we control for the g1freelunch variable.
cee.useBackdoorAdjustment( intervention = "T" , outcome = "Y" , confounders = { "g1freelunch" })
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
tau_hat = cee.estimateCausalEffect()
print ( f "ACE = { tau_hat } " )
Next, we will estimate the ACE using generated data that does not adhere to RCT conditions. The generative model follows the specification from Lunceford & Davidian (2004)
Consider the following generative model:
The outcome variable Y Y is generated according the following equation:
Y & = - X_1 + X_2 - X_3 +2 T -V_1 + V_2 + V_3 \\
& = \langle \nu , \boldsymbol{Z} \rangle + \langle \xi, \boldsymbol{V} \rangle
\end{align*}$$
Where $\nu = (0, -1, 1, -1, 2)^\intercal$, $\boldsymbol{Z} = (1, X_1, X_2, X_3, T)^\intercal$, $\xi = (-1,1,1)^\intercal$ and $\boldsymbol{V} = (V_1, V_2, V_3)^\intercal$.
* The *covariates* are distributed as $X_3 \sim \text{Bernoulli}\left(0.2\right)$. Conditionally $X_3$, the distribution of the other variables is defined as:
If $X_{3} = 0$, $V_3 \sim \text{Bernoulli}\left(0.25\right)$ and
${\left(X_{1}, V_{1}, X_{2}, V_{2}\right)}^{\intercal} \sim \mathcal{N}_4({\tau}_{0}, \Sigma)$
If $ X_{3} = 1$, $V_3 \sim \text{Bernoulli}\left(0.75\right)$ and ${\left(X_{1}, V_{1}, X_{2}, V_{2}\right)}^{\intercal} \sim \mathcal{N}_4({\tau}_{1}, \Sigma)$
with
$$ {\tau}_{1} = \left(\begin{array}{c}
1 \\
1 \\
-1\\
-1
\end{array}\right), {\tau}_{0} = \left(\begin{array}{c}
-1 \\
-1 \\
1\\
1
\end{array}\right) \ \text{and} \ \Sigma = \left(\begin{array}{cccc}
1 & 0.5 & -0.5 & -0.5\\
0.5 & 1 & -0.5 & -0.5 \\
-0.5 & -0.5 & 1 & 0.5 \\
-0.5 & -0.5 & 0.5 & 1
\end{array}
\right)$$
* The *treatment* $T$ is generated as a Bernoulli of the *propensity score*:
$$ \begin{align*}
\mathbb{P}[T=1|X] &= e\left(X, \beta\right) \\
&= (1+\exp (-0.6 X_{1} +0.6 X_{2} - 0.6 X_{3}))^{-1} \\
&= \frac{1}{1+e^{-\langle \beta , \boldsymbol{X} \rangle}} \\
\mathbb{P}[T=0|X] &= 1-\mathbb{P}[T=1|X]
\end{align*}$$
With $\beta = {\left(0, 0.6, -0.6, 0.6\right)}^{\intercal}$ and $\boldsymbol{X} = (1, X_1, X_2, X_3)^{\intercal}$.
```python
## Model parameters
XI = np.array([-1, 1, 1])
NU = np.array([0, -1, 1, -1, 2])
BETA = np.array([0, 0.6, -0.6, 0.6])
TAU_0 = np.array([-1, -1, 1, 1])
TAU_1 = TAU_0 * -1
SIGMA = np.array([[1, 0.5, -0.5, -0.5], [0.5, 1, -0.5, -0.5], [-0.5, -0.5, 1, 0.5], [-0.5, -0.5, 0.5, 1]], dtype=float)
def generate_lunceford(n=100000):
# Generate data
x3 = np.random.binomial(1, 0.2, n)
v3 = np.random.binomial(1, (0.75 * x3 + (0.25 * (1 - x3))), n)
# If x3=0 you have a model, if x3=1 you have another one
x1v1x2v2_x3_0_matrix = np.random.multivariate_normal(TAU_0, SIGMA, size=n, check_valid="warn", tol=1e-8)
x1v1x2v2_x3_1_matrix = np.random.multivariate_normal(TAU_1, SIGMA, size=n, check_valid="warn", tol=1e-8)
x1v1x2v2_x3 = np.where(np.repeat(x3[:, np.newaxis], 4, axis=1) == 0, x1v1x2v2_x3_0_matrix, x1v1x2v2_x3_1_matrix)
# Concatenate values
xv = np.concatenate([x1v1x2v2_x3, np.expand_dims(x3, axis=1), np.expand_dims(v3, axis=1)], axis=1)
# Compute e, a, and y
x = xv[:, [0, 2, 4]]
v = xv[:, [1, 3, 5]]
e = np.power(1 + np.exp(-BETA[0] - x.dot(BETA[1:])), -1)
a = np.random.binomial(1, e, n)
y = x.dot(NU[1:-1]) + v.dot(XI) + a * NU[-1] + np.random.binomial(1, e, n) + np.random.normal(0, 1, n)
# Create the final df
synthetic_data_df = pd.DataFrame(
np.concatenate([x, np.expand_dims(a, axis=1), v, np.expand_dims(y, axis=1)], axis=1),
columns=["X1", "X2", "X3", "T", "V1", "V2", "V3", "Y"],
)
synthetic_data_df["X3"] = synthetic_data_df["X3"].astype(int)
synthetic_data_df["V3"] = synthetic_data_df["V3"].astype(int)
synthetic_data_df["T"] = synthetic_data_df["T"].astype(int)
return synthetic_data_df
df = generate_lunceford()
df.head()
```
<div>
<style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>X1</th>
<th>X2</th>
<th>X3</th>
<th>T</th>
<th>V1</th>
<th>V2</th>
<th>V3</th>
<th>Y</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>1.460951</td>
<td>-1.064626</td>
<td>0</td>
<td>0</td>
<td>0.199910</td>
<td>-0.369811</td>
<td>0</td>
<td>-2.831338</td>
</tr>
<tr>
<th>1</th>
<td>-0.067386</td>
<td>0.845045</td>
<td>0</td>
<td>0</td>
<td>-0.761917</td>
<td>0.651697</td>
<td>0</td>
<td>2.682742</td>
</tr>
<tr>
<th>2</th>
<td>-0.115992</td>
<td>0.447728</td>
<td>1</td>
<td>0</td>
<td>-1.485706</td>
<td>0.312481</td>
<td>1</td>
<td>3.826529</td>
</tr>
<tr>
<th>3</th>
<td>-0.295189</td>
<td>-0.574797</td>
<td>1</td>
<td>0</td>
<td>-0.627252</td>
<td>-0.629032</td>
<td>1</td>
<td>-0.586038</td>
</tr>
<tr>
<th>4</th>
<td>-0.750118</td>
<td>1.067789</td>
<td>0</td>
<td>0</td>
<td>-0.365480</td>
<td>0.671617</td>
<td>0</td>
<td>4.368471</td>
</tr>
</tbody>
</table>
</div>
Here, the exact ATE can be explicitly calculated using the previously defined assumptions.
$$ \begin{align*}
\mathbb{E}[Y(1) - Y(0)] &= \mathbb{E}_{X,V}[\mathbb{E}[Y \mid T=1, X, V] - \mathbb{E}[Y \mid T=0, X, V]]\\
&= \mathbb{E} [ (- X_1 + X_2 - X_3 + 2 \times 1 -V_1 + V_2 + V_3)] - \mathbb{E}[(- X_1 + X_2 - X_3 + 2 \times 0 -V_1 + V_2 + V_3 ) ] \\
&= 2
\end{align*} $$
### 3.2 Setup
Given that we know the data-generating mechanism, we can directly specify the causal structure by constructing a Causal Bayesian Network. To utilize the CausalBNEstimator, we will first employ the discretizer module to determine the domains of the variables.
```python
discretizer = disc.Discretizer(defaultDiscretizationMethod="uniform", defaultNumberOfBins=10)
discretizer.setDiscretizationParameters("Y", "uniform", 60)
bn = discretizer.discretizedTemplate(df)
bn.beginTopologyTransformation()
for _, name in bn:
if name != "Y":
bn.addArc(name, "Y")
for X in ["X1", "X2", "X3"]:
bn.addArc(X, "T")
for XV in ["X1", "V1", "X2", "V2"]:
bn.addArc("X3", XV)
bn.addArc("X3", "V3")
bn.endTopologyTransformation()
causal_model = gum.CausalModel(bn)
gnb.showCausalModel(causal_model, size="10")
```

```python
cee = gcee.CausalEffectEstimation(df, causal_model)
```
### 3.3 Causal Identification
```python
cee.identifyAdjustmentSet(intervention="T", outcome="Y")
```
Backdoor adjustment found.
Supported estimators include:
- CausalModelEstimator
- SLearner
- TLearner
- XLearner
- PStratification
- IPW
'Backdoor'
### 3.4 Causal Estimation
```python
cee.fitCausalBNEstimator()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2 * 100)} %")
```
ACE linear = 1.4136578000448738, MAPE = 29.317109997756308 %
```python
cee.fitSLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 2.006650625400046, MAPE = 0.33253127000230087 %
```python
cee.fitTLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 2.004058247234837, MAPE = 0.20291236174185823 %
```python
cee.fitIPW()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 1.9889992231051903, MAPE = 0.5500388447404858 %
### 3.5 Structure Learning with imposed slice order
We will assess the performance of the `BNLearner` module to uncover the causal structure of the dataset. A slice order will be imposed on the variables to guide the learning process. Following the identification of the structure via the Structure Learning algorithm, we will proceed to estimate the causal effect based on the inferred structure.
```python
template = discretizer.discretizedTemplate(df)
structure_learner = gum.BNLearner(df, template)
structure_learner.useNMLCorrection()
structure_learner.useSmoothingPrior(1e-9)
structure_learner.setSliceOrder([["X3", "X1", "X2", "V1", "V2", "V3"], ["T"], ["Y"]])
learned_bn = structure_learner.learnBN()
learned_causal_model = gum.CausalModel(learned_bn)
print(structure_learner)
```
Filename : /var/folders/r1/pj4vdx_n4_d_xpsb04kzf97r0000gp/T/tmpm2vdh_mg.csv
Size : (100000,8)
Variables : X1[10], X2[10], X3[2], T[2], V1[10], V2[10], V3[2], Y[60]
Induced types : False
Missing values : False
Algorithm : MIIC
Correction : NML
Prior : Smoothing
Prior weight : 0.000000
Constraint Slice Order : {T:1, X2:0, V3:0, V1:0, Y:2, X3:0, X1:0, V2:0}
```python
gnb.sideBySide(gexpl.getInformation(learned_bn, size="50"), gnb.getInference(learned_bn, size="50"))
```
<table style="border-style: hidden; border-collapse: collapse;" width="100%"><tr><td style="border-top:hidden;border-bottom:hidden;vertical-align:middle;"><div align="center" style="vertical-align:middle;"><div align='center'><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="301pt" height="332pt" viewBox="0.00 0.00 301.00 332.00">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 328)">
<title>G</title>
<!-- V2 -->
<g id="node1" class="node">
<title>V2</title>
<g id="a_node1"><a xlink:title="(5) V2 : 2.36888">
<ellipse fill="#6a3c64" stroke="#4a4a4a" cx="27" cy="-90" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="27" y="-84.95" font-family="Times,serif" font-size="14.00" fill="white">V2</text>
</a>
</g>
</g>
<!-- Y -->
<g id="node6" class="node">
<title>Y</title>
<g id="a_node6"><a xlink:title="(7) Y : 4.96240">
<ellipse fill="#9898fd" stroke="#4a4a4a" cx="164" cy="-18" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="164" y="-12.95" font-family="Times,serif" font-size="14.00">Y</text>
</a>
</g>
</g>
<!-- V2->Y -->
<g id="edge8" class="edge">
<title>V2->Y</title>
<g id="a_edge8"><a xlink:title="5 → 7 : 0.1876745983258834">
<path fill="none" stroke="#4a4a4a" stroke-width="3.02" d="M48.11,-78.22C69.99,-67.03 104.54,-49.38 130.23,-36.26"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="3.02" points="131.71,-39.43 139.02,-31.76 128.52,-33.2 131.71,-39.43"/>
</a>
</g>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<g id="a_node2"><a xlink:title="(1) X2 : 2.35380">
<ellipse fill="#6a3b63" stroke="#4a4a4a" cx="82" cy="-162" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="82" y="-156.95" font-family="Times,serif" font-size="14.00" fill="white">X2</text>
</a>
</g>
</g>
<!-- X2->Y -->
<g id="edge10" class="edge">
<title>X2->Y</title>
<g id="a_edge10"><a xlink:title="1 → 7 : 0.11974286414376412">
<path fill="none" stroke="#4a4a4a" stroke-width="1.9" d="M82.41,-143.73C83.56,-124.86 87.58,-94.35 101,-72 109.06,-58.58 121.75,-46.95 133.63,-38.03"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="1.9" points="135.64,-40.89 141.81,-32.28 131.62,-35.16 135.64,-40.89"/>
</a>
</g>
</g>
<!-- T -->
<g id="node8" class="node">
<title>T</title>
<g id="a_node8"><a xlink:title="(3) T : 0.95079">
<ellipse fill="#510910" stroke="#4a4a4a" cx="137" cy="-90" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="137" y="-84.95" font-family="Times,serif" font-size="14.00" fill="white">T</text>
</a>
</g>
</g>
<!-- X2->T -->
<g id="edge11" class="edge">
<title>X2->T</title>
<g id="a_edge11"><a xlink:title="1 → 3 : 0.058847327584239384">
<path fill="none" stroke="#4a4a4a" stroke-width="0.89" d="M94.21,-145.46C101.18,-136.58 110.09,-125.25 117.97,-115.22"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.89" points="120.56,-117.58 123.99,-107.56 115.06,-113.26 120.56,-117.58"/>
</a>
</g>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<g id="a_node3"><a xlink:title="(2) X3 : 0.72025">
<ellipse fill="#4d0102" stroke="#4a4a4a" cx="219" cy="-234" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="219" y="-228.95" font-family="Times,serif" font-size="14.00" fill="white">X3</text>
</a>
</g>
</g>
<!-- X1 -->
<g id="node4" class="node">
<title>X1</title>
<g id="a_node4"><a xlink:title="(0) X1 : 2.43370">
<ellipse fill="#6b3e67" stroke="#4a4a4a" cx="192" cy="-162" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="192" y="-156.95" font-family="Times,serif" font-size="14.00" fill="white">X1</text>
</a>
</g>
</g>
<!-- X3->X1 -->
<g id="edge7" class="edge">
<title>X3->X1</title>
<g id="a_edge7"><a xlink:title="2 → 0 : 0.3135558266615157">
<path fill="none" stroke="#4a4a4a" stroke-width="5.1" d="M212.46,-216.05C210.01,-209.69 207.13,-202.23 204.32,-194.95"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="5.1" points="208.49,-193.35 200.73,-185.63 200.16,-196.56 208.49,-193.35"/>
</a>
</g>
</g>
<!-- V1 -->
<g id="node5" class="node">
<title>V1</title>
<g id="a_node5"><a xlink:title="(4) V1 : 2.32348">
<ellipse fill="#6a3a61" stroke="#4a4a4a" cx="247" cy="-90" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="247" y="-84.95" font-family="Times,serif" font-size="14.00" fill="white">V1</text>
</a>
</g>
</g>
<!-- X3->V1 -->
<g id="edge3" class="edge">
<title>X3->V1</title>
<g id="a_edge3"><a xlink:title="2 → 4 : 0.312476113768136">
<path fill="none" stroke="#4a4a4a" stroke-width="5.08" d="M222.38,-215.87C226.86,-193.16 234.85,-152.62 240.51,-123.9"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="5.08" points="244.83,-125 242.4,-114.32 236.1,-123.28 244.83,-125"/>
</a>
</g>
</g>
<!-- X3->Y -->
<g id="edge4" class="edge">
<title>X3->Y</title>
<g id="a_edge4"><a xlink:title="2 → 7 : 0.15413404149761956">
<path fill="none" stroke="#4a4a4a" stroke-width="2.47" d="M233.19,-218.76C260.53,-189.55 315.11,-121.45 283,-72 265.56,-45.14 231.01,-31.78 203.62,-25.2"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="2.47" points="204.62,-21.84 194.11,-23.19 203.17,-28.69 204.62,-21.84"/>
</a>
</g>
</g>
<!-- X3->T -->
<g id="edge9" class="edge">
<title>X3->T</title>
<g id="a_edge9"><a xlink:title="2 → 3 : 0.05499787782071408">
<path fill="none" stroke="#4a4a4a" stroke-width="0.83" d="M199.16,-221.38C184.95,-212.01 166.52,-197.52 156,-180 144.99,-161.67 140.31,-137.84 138.35,-119.46"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.83" points="141.84,-119.2 137.51,-109.52 134.86,-119.78 141.84,-119.2"/>
</a>
</g>
</g>
<!-- X1->Y -->
<g id="edge1" class="edge">
<title>X1->Y</title>
<g id="a_edge1"><a xlink:title="0 → 7 : 0.1867984494886965">
<path fill="none" stroke="#4a4a4a" stroke-width="3.01" d="M188.62,-143.87C184.06,-120.74 175.85,-79.09 170.17,-50.29"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="3.01" points="173.64,-49.79 168.27,-40.65 166.77,-51.14 173.64,-49.79"/>
</a>
</g>
</g>
<!-- X1->T -->
<g id="edge6" class="edge">
<title>X1->T</title>
<g id="a_edge6"><a xlink:title="0 → 3 : 0.08866846667095629">
<path fill="none" stroke="#4a4a4a" stroke-width="1.39" d="M179.79,-145.46C172.96,-136.76 164.27,-125.71 156.52,-115.84"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="1.39" points="159.4,-113.84 150.47,-108.14 153.9,-118.17 159.4,-113.84"/>
</a>
</g>
</g>
<!-- V1->Y -->
<g id="edge12" class="edge">
<title>V1->Y</title>
<g id="a_edge12"><a xlink:title="4 → 7 : 0.23892685267707137">
<path fill="none" stroke="#4a4a4a" stroke-width="3.87" d="M230.6,-75.17C219.69,-65.97 205.07,-53.63 192.3,-42.87"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="3.87" points="194.74,-40.35 184.84,-36.58 190.23,-45.7 194.74,-40.35"/>
</a>
</g>
</g>
<!-- V3 -->
<g id="node7" class="node">
<title>V3</title>
<g id="a_node7"><a xlink:title="(6) V3 : 0.93270">
<ellipse fill="#51090f" stroke="#4a4a4a" cx="219" cy="-306" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="219" y="-300.95" font-family="Times,serif" font-size="14.00" fill="white">V3</text>
</a>
</g>
</g>
<!-- V3->X3 -->
<g id="edge2" class="edge">
<title>V3->X3</title>
<g id="a_edge2"><a xlink:title="6 → 2 : 0.11889081028329129">
<path fill="none" stroke="#4a4a4a" stroke-width="1.89" d="M219,-287.7C219,-280.75 219,-272.53 219,-264.68"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="1.89" points="222.5,-264.96 219,-254.96 215.5,-264.96 222.5,-264.96"/>
</a>
</g>
</g>
<!-- T->Y -->
<g id="edge5" class="edge">
<title>T->Y</title>
<g id="a_edge5"><a xlink:title="3 → 7 : 0.01070249417852498">
<path fill="none" stroke="#4a4a4a" stroke-width="0.1" d="M143.54,-72.05C146.65,-63.97 150.45,-54.12 153.93,-45.11"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.1" points="157.14,-46.52 157.47,-35.93 150.61,-44 157.14,-46.52"/>
</a>
</g>
</g>
</g>
</svg><br/><img style='vertical-align:middle'src='data:image/png;base64,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' alt="PyAgrum inline image"></div></div></td><td style="border-top:hidden;border-bottom:hidden;vertical-align:middle;"><div align="center" style="vertical-align:middle;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="476pt" height="559pt" viewBox="0.00 0.00 476.00 559.00">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 554.5)">
<title>structs</title>
<text xml:space="preserve" text-anchor="middle" x="234" y="-7.2" font-family="Times,serif" font-size="14.00" fill="#4a4a4a">Inference in 1.55ms</text>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#e0e0e0" stroke="#000000" points="247,-372.5 153,-372.5 153,-276.5 247,-276.5 247,-372.5"/>
<svg viewBox="0 0 123.36 126.234141" width="94px" height="96px" preserveAspectRatio="xMinYMin meet" x="153" y="-372.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.798823</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 123.36 126.234141 L 123.36 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.805 89.760703 L 96.555 89.760703 L 96.555 34.320703 L 26.805 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.465714 89.760703 L 28.465714 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m2e95b14d5e" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m2e95b14d5e" x="28.465714" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.09 -->
<g transform="translate(31.063371 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.68 89.760703 L 61.68 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m2e95b14d5e" x="61.68" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.15 -->
<g transform="translate(64.277656 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.894286 89.760703 L 94.894286 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m2e95b14d5e" x="94.894286" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 4.78 -->
<g transform="translate(97.491942 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-17"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.769286 89.760703 L 36.769286 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m9e7637c1f6" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m9e7637c1f6" x="36.769286" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 45.072857 89.760703 L 45.072857 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m9e7637c1f6" x="45.072857" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.376429 89.760703 L 53.376429 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m9e7637c1f6" x="53.376429" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.983571 89.760703 L 69.983571 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m9e7637c1f6" x="69.983571" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 78.287143 89.760703 L 78.287143 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m9e7637c1f6" x="78.287143" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.590714 89.760703 L 86.590714 34.320703 " clip-path="url(#pca061a83d0)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m9e7637c1f6" x="86.590714" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m5f5dd470ca" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m5f5dd470ca" x="26.805" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.901875 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m5f5dd470ca" x="26.805" y="55.913797" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.901875 59.712625) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.805 89.760703 L 26.805 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.555 89.760703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.805 89.760703 L 96.555 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.805 34.320703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- X1 -->
<g transform="translate(53.7525 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-14" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=-0.60$; $\sigma=1.31$ -->
<g transform="translate(3.6 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-c9c" d="M 678 2272 L 4684 2272 L 4684 1741 L 678 1741 L 678 2272 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-c9c" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(270.166016 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(333.789062 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(365.576172 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(429.199219 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(492.822266 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(526.513672 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(558.300781 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(641.162109 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(744.433594 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(808.056641 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(839.84375 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(903.466797 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.465714 89.760703 L 35.108571 89.760703 L 35.108571 89.643908 L 28.465714 89.643908 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 35.108571 89.760703 L 41.751429 89.760703 L 41.751429 87.537814 L 35.108571 87.537814 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.751429 89.760703 L 48.394286 89.760703 L 48.394286 74.407317 L 41.751429 74.407317 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.394286 89.760703 L 55.037143 89.760703 L 55.037143 46.125982 L 48.394286 46.125982 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 55.037143 89.760703 L 61.68 89.760703 L 61.68 36.960703 L 55.037143 36.960703 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.68 89.760703 L 68.322857 89.760703 L 68.322857 56.133356 L 61.68 56.133356 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.322857 89.760703 L 74.965714 89.760703 L 74.965714 73.150178 L 68.322857 73.150178 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.965714 89.760703 L 81.608571 89.760703 L 81.608571 83.822995 L 74.965714 83.822995 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.608571 89.760703 L 88.251429 89.760703 L 88.251429 88.644028 L 81.608571 88.644028 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 88.251429 89.760703 L 94.894286 89.760703 L 94.894286 89.673064 L 88.251429 89.673064 z " clip-path="url(#pca061a83d0)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="pca061a83d0">
<rect x="26.805" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- T -->
<g id="node4" class="node">
<title>T</title>
<polygon fill="#e0e0e0" stroke="#000000" points="171.5,-219 70.5,-219 70.5,-166 171.5,-166 171.5,-219"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="70.5" y="-219"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.872223</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 58.271833 62.040703 L 58.271833 49.720703 L 16.9625 49.720703 z " clip-path="url(#p88b7122835)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 87.253167 46.640703 L 87.253167 34.320703 L 16.9625 34.320703 z " clip-path="url(#p88b7122835)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#p88b7122835)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m20db649cc8" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m20db649cc8" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#p88b7122835)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m20db649cc8" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#p88b7122835)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m20db649cc8" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="m040c5a6663" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m040c5a6663" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#m040c5a6663" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 37.02% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-16"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 62.98% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-19"/>
<use xlink:href="#DejaVuSans-15" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- T -->
<g transform="translate(69.097813 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-37" d="M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-37"/>
</g>
<!-- $\mu=0.37$; $\sigma=0.48$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p88b7122835">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X1->T -->
<g id="edge6" class="edge">
<title>X1->T</title>
<g id="a_edge6"><a xlink:title="0 → 3">
<path fill="none" stroke="#4a4a4a" d="M171.26,-276.2C161.79,-260.63 151.44,-243.59 142.6,-229.04"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="145.72,-227.44 137.54,-220.72 139.74,-231.08 145.72,-227.44"/>
</a>
</g>
</g>
<!-- Y -->
<g id="node8" class="node">
<title>Y</title>
<polygon fill="#e0e0e0" stroke="#000000" points="405,-108.5 69,-108.5 69,-24.5 405,-24.5 405,-108.5"/>
<svg viewBox="0 0 446.143973 110.360703" width="336px" height="84px" preserveAspectRatio="xMinYMin meet" x="69" y="-108.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.996055</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 110.360703 L 446.143973 110.360703 L 446.143973 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 438.028125 89.760703 L 438.028125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 36.301339 89.760703 L 36.301339 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m64c91ed751" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m64c91ed751" x="36.301339" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -14.02 -->
<g transform="translate(20.183371 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-14" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(163.328125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(195.109375 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(258.734375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 232.265625 89.760703 L 232.265625 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m64c91ed751" x="232.265625" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 2.43 -->
<g transform="translate(221.132813 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-15"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 428.229911 89.760703 L 428.229911 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m64c91ed751" x="428.229911" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 18.88 -->
<g transform="translate(413.915848 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(222.65625 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 85.292411 89.760703 L 85.292411 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m92a065aedf" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m92a065aedf" x="85.292411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 134.283482 89.760703 L 134.283482 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m92a065aedf" x="134.283482" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 183.274554 89.760703 L 183.274554 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m92a065aedf" x="183.274554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 281.256696 89.760703 L 281.256696 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m92a065aedf" x="281.256696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 330.247768 89.760703 L 330.247768 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m92a065aedf" x="330.247768" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 379.238839 89.760703 L 379.238839 34.320703 " clip-path="url(#pa90b8e1e70)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m92a065aedf" x="379.238839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="md32f70585c" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#md32f70585c" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#md32f70585c" x="26.503125" y="48.565896" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.1 -->
<g transform="translate(3.6 52.364724) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 438.028125 89.760703 L 438.028125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 438.028125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 438.028125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- Y -->
<g transform="translate(228.600938 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3c" d="M -13 4666 L 666 4666 L 1959 2747 L 3244 4666 L 3922 4666 L 2272 2222 L 2272 0 L 1638 0 L 1638 2222 L -13 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3c"/>
</g>
<!-- $\mu=3.67$; $\sigma=4.79$ -->
<g transform="translate(179.225625 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 36.301339 89.760703 L 42.833482 89.760703 L 42.833482 87.514299 L 36.301339 87.514299 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 42.833482 89.760703 L 49.365625 89.760703 L 49.365625 87.51429 L 42.833482 87.51429 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 49.365625 89.760703 L 55.897768 89.760703 L 55.897768 87.514288 L 49.365625 87.514288 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 55.897768 89.760703 L 62.429911 89.760703 L 62.429911 87.514269 L 55.897768 87.514269 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 62.429911 89.760703 L 68.962054 89.760703 L 68.962054 87.514242 L 62.429911 87.514242 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 68.962054 89.760703 L 75.494196 89.760703 L 75.494196 87.513587 L 68.962054 87.513587 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 75.494196 89.760703 L 82.026339 89.760703 L 82.026339 87.513473 L 75.494196 87.513473 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 82.026339 89.760703 L 88.558482 89.760703 L 88.558482 87.512843 L 82.026339 87.512843 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 88.558482 89.760703 L 95.090625 89.760703 L 95.090625 87.511215 L 88.558482 87.511215 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 95.090625 89.760703 L 101.622768 89.760703 L 101.622768 87.508068 L 95.090625 87.508068 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_17">
<path d="M 101.622768 89.760703 L 108.154911 89.760703 L 108.154911 87.496368 L 101.622768 87.496368 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_18">
<path d="M 108.154911 89.760703 L 114.687054 89.760703 L 114.687054 87.490088 L 108.154911 87.490088 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_19">
<path d="M 114.687054 89.760703 L 121.219196 89.760703 L 121.219196 87.459608 L 114.687054 87.459608 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_20">
<path d="M 121.219196 89.760703 L 127.751339 89.760703 L 127.751339 87.369896 L 121.219196 87.369896 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_21">
<path d="M 127.751339 89.760703 L 134.283482 89.760703 L 134.283482 87.319008 L 127.751339 87.319008 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_22">
<path d="M 134.283482 89.760703 L 140.815625 89.760703 L 140.815625 87.099974 L 134.283482 87.099974 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_23">
<path d="M 140.815625 89.760703 L 147.347768 89.760703 L 147.347768 86.973034 L 140.815625 86.973034 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_24">
<path d="M 147.347768 89.760703 L 153.879911 89.760703 L 153.879911 86.501474 L 147.347768 86.501474 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_25">
<path d="M 153.879911 89.760703 L 160.412054 89.760703 L 160.412054 85.994626 L 153.879911 85.994626 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_26">
<path d="M 160.412054 89.760703 L 166.944196 89.760703 L 166.944196 85.201776 L 160.412054 85.201776 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_27">
<path d="M 166.944196 89.760703 L 173.476339 89.760703 L 173.476339 82.959087 L 166.944196 82.959087 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_28">
<path d="M 173.476339 89.760703 L 180.008482 89.760703 L 180.008482 82.505796 L 173.476339 82.505796 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_29">
<path d="M 180.008482 89.760703 L 186.540625 89.760703 L 186.540625 81.320315 L 180.008482 81.320315 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_30">
<path d="M 186.540625 89.760703 L 193.072768 89.760703 L 193.072768 77.159769 L 186.540625 77.159769 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_31">
<path d="M 193.072768 89.760703 L 199.604911 89.760703 L 199.604911 75.921995 L 193.072768 75.921995 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_32">
<path d="M 199.604911 89.760703 L 206.137054 89.760703 L 206.137054 71.930048 L 199.604911 71.930048 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_33">
<path d="M 206.137054 89.760703 L 212.669196 89.760703 L 212.669196 69.05577 L 206.137054 69.05577 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_34">
<path d="M 212.669196 89.760703 L 219.201339 89.760703 L 219.201339 61.423194 L 212.669196 61.423194 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_35">
<path d="M 219.201339 89.760703 L 225.733482 89.760703 L 225.733482 56.500802 L 219.201339 56.500802 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_36">
<path d="M 225.733482 89.760703 L 232.265625 89.760703 L 232.265625 49.737025 L 225.733482 49.737025 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_37">
<path d="M 232.265625 89.760703 L 238.797768 89.760703 L 238.797768 45.879096 L 232.265625 45.879096 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_38">
<path d="M 238.797768 89.760703 L 245.329911 89.760703 L 245.329911 43.128796 L 238.797768 43.128796 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_39">
<path d="M 245.329911 89.760703 L 251.862054 89.760703 L 251.862054 36.960703 L 245.329911 36.960703 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_40">
<path d="M 251.862054 89.760703 L 258.394196 89.760703 L 258.394196 38.792093 L 251.862054 38.792093 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_41">
<path d="M 258.394196 89.760703 L 264.926339 89.760703 L 264.926339 38.306812 L 258.394196 38.306812 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_42">
<path d="M 264.926339 89.760703 L 271.458482 89.760703 L 271.458482 43.289218 L 264.926339 43.289218 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_43">
<path d="M 271.458482 89.760703 L 277.990625 89.760703 L 277.990625 47.721696 L 271.458482 47.721696 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_44">
<path d="M 277.990625 89.760703 L 284.522768 89.760703 L 284.522768 53.354609 L 277.990625 53.354609 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_45">
<path d="M 284.522768 89.760703 L 291.054911 89.760703 L 291.054911 60.256174 L 284.522768 60.256174 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_46">
<path d="M 291.054911 89.760703 L 297.587054 89.760703 L 297.587054 66.108255 L 291.054911 66.108255 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_47">
<path d="M 297.587054 89.760703 L 304.119196 89.760703 L 304.119196 72.057677 L 297.587054 72.057677 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_48">
<path d="M 304.119196 89.760703 L 310.651339 89.760703 L 310.651339 76.959159 L 304.119196 76.959159 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_49">
<path d="M 310.651339 89.760703 L 317.183482 89.760703 L 317.183482 80.793198 L 310.651339 80.793198 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_50">
<path d="M 317.183482 89.760703 L 323.715625 89.760703 L 323.715625 83.389207 L 317.183482 83.389207 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_51">
<path d="M 323.715625 89.760703 L 330.247768 89.760703 L 330.247768 85.118521 L 323.715625 85.118521 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_52">
<path d="M 330.247768 89.760703 L 336.779911 89.760703 L 336.779911 86.064025 L 330.247768 86.064025 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_53">
<path d="M 336.779911 89.760703 L 343.312054 89.760703 L 343.312054 86.887547 L 336.779911 86.887547 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_54">
<path d="M 343.312054 89.760703 L 349.844196 89.760703 L 349.844196 87.061864 L 343.312054 87.061864 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_55">
<path d="M 349.844196 89.760703 L 356.376339 89.760703 L 356.376339 87.321613 L 349.844196 87.321613 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_56">
<path d="M 356.376339 89.760703 L 362.908482 89.760703 L 362.908482 87.433474 L 356.376339 87.433474 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_57">
<path d="M 362.908482 89.760703 L 369.440625 89.760703 L 369.440625 87.478812 L 362.908482 87.478812 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_58">
<path d="M 369.440625 89.760703 L 375.972768 89.760703 L 375.972768 87.500044 L 369.440625 87.500044 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_59">
<path d="M 375.972768 89.760703 L 382.504911 89.760703 L 382.504911 87.50796 L 375.972768 87.50796 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_60">
<path d="M 382.504911 89.760703 L 389.037054 89.760703 L 389.037054 87.511631 L 382.504911 87.511631 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_61">
<path d="M 389.037054 89.760703 L 395.569196 89.760703 L 395.569196 87.513846 L 389.037054 87.513846 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_62">
<path d="M 395.569196 89.760703 L 402.101339 89.760703 L 402.101339 87.5141 L 395.569196 87.5141 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_63">
<path d="M 402.101339 89.760703 L 408.633482 89.760703 L 408.633482 87.514292 L 402.101339 87.514292 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_64">
<path d="M 408.633482 89.760703 L 415.165625 89.760703 L 415.165625 87.514292 L 408.633482 87.514292 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_65">
<path d="M 415.165625 89.760703 L 421.697768 89.760703 L 421.697768 87.514291 L 415.165625 87.514291 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_66">
<path d="M 421.697768 89.760703 L 428.229911 89.760703 L 428.229911 87.514299 L 421.697768 87.514299 z " clip-path="url(#pa90b8e1e70)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="pa90b8e1e70">
<rect x="26.503125" y="34.320703" width="411.525" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X1->Y -->
<g id="edge1" class="edge">
<title>X1->Y</title>
<g id="a_edge1"><a xlink:title="0 → 7">
<path fill="none" stroke="#4a4a4a" d="M203.41,-276.17C206.42,-239.96 211.49,-188.87 219,-144.5 220.35,-136.5 222.04,-128.08 223.84,-119.88"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="227.2,-120.87 226,-110.35 220.38,-119.32 227.2,-120.87"/>
</a>
</g>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#e0e0e0" stroke="#000000" points="90,-372.5 0,-372.5 0,-276.5 90,-276.5 90,-372.5"/>
<svg viewBox="0 0 118.018125 126.234141" width="90px" height="96px" preserveAspectRatio="xMinYMin meet" x="0" y="-372.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.827964</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 118.018125 126.234141 L 118.018125 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 L 96.253125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.163839 89.760703 L 28.163839 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="me5ed754a2e" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#me5ed754a2e" x="28.163839" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.44 -->
<g transform="translate(30.761496 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.378125 89.760703 L 61.378125 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#me5ed754a2e" x="61.378125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.19 -->
<g transform="translate(63.975781 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.592411 89.760703 L 94.592411 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#me5ed754a2e" x="94.592411" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.07 -->
<g transform="translate(97.190067 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.467411 89.760703 L 36.467411 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="mbdae80a207" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#mbdae80a207" x="36.467411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 44.770982 89.760703 L 44.770982 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#mbdae80a207" x="44.770982" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.074554 89.760703 L 53.074554 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#mbdae80a207" x="53.074554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.681696 89.760703 L 69.681696 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#mbdae80a207" x="69.681696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 77.985268 89.760703 L 77.985268 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#mbdae80a207" x="77.985268" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.288839 89.760703 L 86.288839 34.320703 " clip-path="url(#p450a8a6de8)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#mbdae80a207" x="86.288839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m050613faa0" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m050613faa0" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m050613faa0" x="26.503125" y="53.545654" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.6 57.344482) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.253125 89.760703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- X2 -->
<g transform="translate(53.450625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-15" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=0.60$; $\sigma=1.32$ -->
<g transform="translate(8.338125 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.163839 89.760703 L 34.806696 89.760703 L 34.806696 89.748469 L 28.163839 89.748469 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 34.806696 89.760703 L 41.449554 89.760703 L 41.449554 89.403857 L 34.806696 89.403857 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.449554 89.760703 L 48.092411 89.760703 L 48.092411 86.543572 L 41.449554 86.543572 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.092411 89.760703 L 54.735268 89.760703 L 54.735268 77.611212 L 48.092411 77.611212 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 54.735268 89.760703 L 61.378125 89.760703 L 61.378125 62.132934 L 54.735268 62.132934 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.378125 89.760703 L 68.020982 89.760703 L 68.020982 38.435645 L 61.378125 38.435645 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.020982 89.760703 L 74.663839 89.760703 L 74.663839 36.960703 L 68.020982 36.960703 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.663839 89.760703 L 81.306696 89.760703 L 81.306696 68.294609 L 74.663839 68.294609 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.306696 89.760703 L 87.949554 89.760703 L 87.949554 86.578033 L 81.306696 86.578033 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 87.949554 89.760703 L 94.592411 89.760703 L 94.592411 89.589948 L 87.949554 89.589948 z " clip-path="url(#p450a8a6de8)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p450a8a6de8">
<rect x="26.503125" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X2->T -->
<g id="edge11" class="edge">
<title>X2->T</title>
<g id="a_edge11"><a xlink:title="1 → 3">
<path fill="none" stroke="#4a4a4a" d="M72.65,-276.2C81.76,-260.63 91.72,-243.59 100.22,-229.04"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="103.06,-231.13 105.08,-220.73 97.01,-227.6 103.06,-231.13"/>
</a>
</g>
</g>
<!-- X2->Y -->
<g id="edge10" class="edge">
<title>X2->Y</title>
<g id="a_edge10"><a xlink:title="1 → 7">
<path fill="none" stroke="#4a4a4a" d="M36.9,-276.39C32.87,-237.41 33.66,-182.49 61,-144.5 69.15,-133.18 79.33,-123.5 90.66,-115.23"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="92.43,-118.27 98.73,-109.75 88.49,-112.48 92.43,-118.27"/>
</a>
</g>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#e0e0e0" stroke="#000000" points="287.5,-461.5 186.5,-461.5 186.5,-408.5 287.5,-408.5 287.5,-461.5"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="186.5" y="-461.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.850260</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 39.189092 62.040703 L 39.189092 49.720703 L 16.9625 49.720703 z " clip-path="url(#pc1c5145c5a)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 106.335908 46.640703 L 106.335908 34.320703 L 16.9625 34.320703 z " clip-path="url(#pc1c5145c5a)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#pc1c5145c5a)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m09713e6aac" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m09713e6aac" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#pc1c5145c5a)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m09713e6aac" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#pc1c5145c5a)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m09713e6aac" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="mf05528062c" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mf05528062c" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#mf05528062c" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 19.92% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 80.08% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-1b"/>
<use xlink:href="#DejaVuSans-13" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- X3 -->
<g transform="translate(64.835 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-16" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=0.20$; $\sigma=0.40$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="pc1c5145c5a">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X3->X1 -->
<g id="edge7" class="edge">
<title>X3->X1</title>
<g id="a_edge7"><a xlink:title="2 → 0">
<path fill="none" stroke="#4a4a4a" d="M228.14,-408.01C225.61,-400.61 222.75,-392.23 219.85,-383.71"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="223.2,-382.69 216.66,-374.36 216.58,-384.95 223.2,-382.69"/>
</a>
</g>
</g>
<!-- X3->T -->
<g id="edge9" class="edge">
<title>X3->T</title>
<g id="a_edge9"><a xlink:title="2 → 3">
<path fill="none" stroke="#4a4a4a" d="M186.4,-411.33C170.34,-401.65 154.13,-388.77 144,-372.5 117.18,-329.45 115.08,-269.28 117.16,-230.85"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="120.65,-231.15 117.84,-220.93 113.67,-230.67 120.65,-231.15"/>
</a>
</g>
</g>
<!-- V1 -->
<g id="node5" class="node">
<title>V1</title>
<polygon fill="#e0e0e0" stroke="#000000" points="322,-240.5 228,-240.5 228,-144.5 322,-144.5 322,-240.5"/>
<svg viewBox="0 0 123.36 126.234141" width="94px" height="96px" preserveAspectRatio="xMinYMin meet" x="228" y="-240.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.900922</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 123.36 126.234141 L 123.36 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.805 89.760703 L 96.555 89.760703 L 96.555 34.320703 L 26.805 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.465714 89.760703 L 28.465714 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mdce4b66b30" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mdce4b66b30" x="28.465714" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.44 -->
<g transform="translate(31.063371 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.68 89.760703 L 61.68 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mdce4b66b30" x="61.68" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.08 -->
<g transform="translate(64.277656 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.894286 89.760703 L 94.894286 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mdce4b66b30" x="94.894286" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.28 -->
<g transform="translate(97.491942 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.769286 89.760703 L 36.769286 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m112789f209" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m112789f209" x="36.769286" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 45.072857 89.760703 L 45.072857 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m112789f209" x="45.072857" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.376429 89.760703 L 53.376429 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m112789f209" x="53.376429" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.983571 89.760703 L 69.983571 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m112789f209" x="69.983571" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 78.287143 89.760703 L 78.287143 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m112789f209" x="78.287143" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.590714 89.760703 L 86.590714 34.320703 " clip-path="url(#p030404087e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m112789f209" x="86.590714" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m1590b2ccd7" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m1590b2ccd7" x="26.805" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.901875 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m1590b2ccd7" x="26.805" y="55.773399" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.901875 59.572228) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.805 89.760703 L 26.805 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.555 89.760703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.805 89.760703 L 96.555 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.805 34.320703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- V1 -->
<g transform="translate(53.758125 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-14" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=-0.59$; $\sigma=1.31$ -->
<g transform="translate(3.6 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-c9c" d="M 678 2272 L 4684 2272 L 4684 1741 L 678 1741 L 678 2272 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-c9c" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(270.166016 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(333.789062 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(365.576172 0.78125)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(429.199219 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(492.822266 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(526.513672 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(558.300781 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(641.162109 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(744.433594 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(808.056641 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(839.84375 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(903.466797 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.465714 89.760703 L 35.108571 89.760703 L 35.108571 89.708222 L 28.465714 89.708222 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 35.108571 89.760703 L 41.751429 89.760703 L 41.751429 88.51273 L 35.108571 88.51273 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.751429 89.760703 L 48.394286 89.760703 L 48.394286 77.226905 L 41.751429 77.226905 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.394286 89.760703 L 55.037143 89.760703 L 55.037143 47.919909 L 48.394286 47.919909 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 55.037143 89.760703 L 61.68 89.760703 L 61.68 36.960703 L 55.037143 36.960703 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.68 89.760703 L 68.322857 89.760703 L 68.322857 58.623843 L 61.68 58.623843 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.322857 89.760703 L 74.965714 89.760703 L 74.965714 75.466963 L 68.322857 75.466963 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.965714 89.760703 L 81.608571 89.760703 L 81.608571 85.665112 L 74.965714 85.665112 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.608571 89.760703 L 88.251429 89.760703 L 88.251429 89.230976 L 81.608571 89.230976 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 88.251429 89.760703 L 94.894286 89.760703 L 94.894286 89.736762 L 88.251429 89.736762 z " clip-path="url(#p030404087e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p030404087e">
<rect x="26.805" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X3->V1 -->
<g id="edge3" class="edge">
<title>X3->V1</title>
<g id="a_edge3"><a xlink:title="2 → 4">
<path fill="none" stroke="#4a4a4a" d="M246.17,-408.26C249.74,-397.35 253.55,-384.43 256,-372.5 264.17,-332.72 268.95,-287.21 271.66,-252.03"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="275.12,-252.73 272.36,-242.5 268.14,-252.22 275.12,-252.73"/>
</a>
</g>
</g>
<!-- X3->Y -->
<g id="edge4" class="edge">
<title>X3->Y</title>
<g id="a_edge4"><a xlink:title="2 → 7">
<path fill="none" stroke="#4a4a4a" d="M255.09,-408.02C278.64,-372.27 318.32,-305 331,-240.5 339.23,-198.64 349.26,-183.06 331,-144.5 326.19,-134.35 319.32,-125.09 311.44,-116.79"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="313.96,-114.35 304.36,-109.87 309.07,-119.36 313.96,-114.35"/>
</a>
</g>
</g>
<!-- T->Y -->
<g id="edge5" class="edge">
<title>T->Y</title>
<g id="a_edge5"><a xlink:title="3 → 7">
<path fill="none" stroke="#4a4a4a" d="M145.32,-165.51C158.56,-151.35 175.4,-133.35 191.01,-116.66"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="193.25,-119.39 197.53,-109.7 188.14,-114.61 193.25,-119.39"/>
</a>
</g>
</g>
<!-- V1->Y -->
<g id="edge12" class="edge">
<title>V1->Y</title>
<g id="a_edge12"><a xlink:title="4 → 7">
<path fill="none" stroke="#4a4a4a" d="M260.53,-144.27C258.07,-136.27 255.52,-127.92 253.03,-119.8"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="256.41,-118.91 250.14,-110.37 249.72,-120.96 256.41,-118.91"/>
</a>
</g>
</g>
<!-- V2 -->
<g id="node6" class="node">
<title>V2</title>
<polygon fill="#e0e0e0" stroke="#000000" points="468,-240.5 378,-240.5 378,-144.5 468,-144.5 468,-240.5"/>
<svg viewBox="0 0 118.018125 126.234141" width="90px" height="96px" preserveAspectRatio="xMinYMin meet" x="378" y="-240.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.930013</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 118.018125 126.234141 L 118.018125 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 L 96.253125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.163839 89.760703 L 28.163839 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mfd2812adcb" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mfd2812adcb" x="28.163839" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.14 -->
<g transform="translate(30.761496 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.378125 89.760703 L 61.378125 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mfd2812adcb" x="61.378125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0.07 -->
<g transform="translate(63.975781 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.592411 89.760703 L 94.592411 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mfd2812adcb" x="94.592411" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.28 -->
<g transform="translate(97.190067 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.467411 89.760703 L 36.467411 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m66b808d516" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m66b808d516" x="36.467411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 44.770982 89.760703 L 44.770982 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m66b808d516" x="44.770982" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.074554 89.760703 L 53.074554 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m66b808d516" x="53.074554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.681696 89.760703 L 69.681696 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m66b808d516" x="69.681696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 77.985268 89.760703 L 77.985268 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m66b808d516" x="77.985268" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.288839 89.760703 L 86.288839 34.320703 " clip-path="url(#p7f07de995e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m66b808d516" x="86.288839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m6e04841666" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m6e04841666" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m6e04841666" x="26.503125" y="55.400986" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.6 59.199814) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.253125 89.760703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- V2 -->
<g transform="translate(53.45625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-15" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=0.60$; $\sigma=1.32$ -->
<g transform="translate(8.338125 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.163839 89.760703 L 34.806696 89.760703 L 34.806696 89.729209 L 28.163839 89.729209 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 34.806696 89.760703 L 41.449554 89.760703 L 41.449554 89.092729 L 34.806696 89.092729 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.449554 89.760703 L 48.092411 89.760703 L 48.092411 85.066084 L 41.449554 85.066084 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.092411 89.760703 L 54.735268 89.760703 L 54.735268 75.149522 L 48.092411 75.149522 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 54.735268 89.760703 L 61.378125 89.760703 L 61.378125 58.502099 L 54.735268 58.502099 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.378125 89.760703 L 68.020982 89.760703 L 68.020982 36.960703 L 61.378125 36.960703 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.020982 89.760703 L 74.663839 89.760703 L 74.663839 45.422923 L 68.020982 45.422923 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.663839 89.760703 L 81.306696 89.760703 L 81.306696 75.185798 L 74.663839 75.185798 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.306696 89.760703 L 87.949554 89.760703 L 87.949554 87.961574 L 81.306696 87.961574 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 87.949554 89.760703 L 94.592411 89.760703 L 94.592411 89.643465 L 87.949554 89.643465 z " clip-path="url(#p7f07de995e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p7f07de995e">
<rect x="26.503125" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- V2->Y -->
<g id="edge8" class="edge">
<title>V2->Y</title>
<g id="a_edge8"><a xlink:title="5 → 7">
<path fill="none" stroke="#4a4a4a" d="M377.7,-154.47C373.13,-151.02 368.51,-147.65 364,-144.5 349.55,-134.42 333.77,-124.24 318.39,-114.73"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="320.53,-111.94 310.18,-109.69 316.87,-117.9 320.53,-111.94"/>
</a>
</g>
</g>
<!-- V3 -->
<g id="node7" class="node">
<title>V3</title>
<polygon fill="#e0e0e0" stroke="#000000" points="287.5,-550.5 186.5,-550.5 186.5,-497.5 287.5,-497.5 287.5,-550.5"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="186.5" y="-550.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:32.952527</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 55.853037 62.040703 L 55.853037 49.720703 L 16.9625 49.720703 z " clip-path="url(#pf2bccf5077)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 89.671963 46.640703 L 89.671963 34.320703 L 16.9625 34.320703 z " clip-path="url(#pf2bccf5077)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#pf2bccf5077)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m8e2b15b35f" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m8e2b15b35f" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#pf2bccf5077)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m8e2b15b35f" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#pf2bccf5077)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m8e2b15b35f" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="m12e820ec84" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m12e820ec84" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#m12e820ec84" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 34.85% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-16"/>
<use xlink:href="#DejaVuSans-17" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 65.15% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-19"/>
<use xlink:href="#DejaVuSans-18" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- V3 -->
<g transform="translate(64.840625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-16" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=0.35$; $\sigma=0.48$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="pf2bccf5077">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- V3->X3 -->
<g id="edge2" class="edge">
<title>V3->X3</title>
<g id="a_edge2"><a xlink:title="6 → 2">
<path fill="none" stroke="#4a4a4a" d="M237,-497.37C237,-489.74 237,-481.22 237,-473.01"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="240.5,-473.26 237,-463.26 233.5,-473.26 240.5,-473.26"/>
</a>
</g>
</g>
</g>
</svg></div></td></tr></table>
Subsequently, we will reuse the previously established pipeline to estimate the causal effect based on the identified structure.
```python
cee = gcee.CausalEffectEstimation(df, learned_causal_model)
```
```python
cee.identifyAdjustmentSet(intervention="T", outcome="Y")
```
Backdoor adjustment found.
Supported estimators include:
- CausalModelEstimator
- SLearner
- TLearner
- XLearner
- PStratification
- IPW
'Backdoor'
```python
cee.fitCausalBNEstimator()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2 * 100)} %")
```
ACE linear = 1.4089712495284399, MAPE = 29.551437523578006 %
```python
cee.fitSLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 2.006650625400046, MAPE = 0.33253127000230087 %
```python
cee.fitTLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 2.004058247234837, MAPE = 0.20291236174185823 %
```python
cee.fitIPW()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 1.9889992231051903, MAPE = 0.5500388447404858 %
We observe that the results remain largely consistent when imposing a slice order on the variables. However, the `CausalBNEstimator` appears to be the most sensitive to structural changes, as it relies on the entire graph structure for its estimations.
### 3.6 Structure Learning with imposed slice order
Next, we will evaluate the estimations produced when allowing the algorithm to perform structure learning autonomously, without imposing any slice order.
```python
template = discretizer.discretizedTemplate(df)
structure_learner = gum.BNLearner(df, template)
structure_learner.useNMLCorrection()
structure_learner.useSmoothingPrior(1e-9)
learned_bn = structure_learner.learnBN()
learned_causal_model = gum.CausalModel(learned_bn)
print(structure_learner)
```
Filename : /var/folders/r1/pj4vdx_n4_d_xpsb04kzf97r0000gp/T/tmp34ycph4a.csv
Size : (100000,8)
Variables : X1[10], X2[10], X3[2], T[2], V1[10], V2[10], V3[2], Y[60]
Induced types : False
Missing values : False
Algorithm : MIIC
Correction : NML
Prior : Smoothing
Prior weight : 0.000000
```python
gnb.sideBySide(gexpl.getInformation(learned_bn, size="50"), gnb.getInference(learned_bn, size="50"))
```
<table style="border-style: hidden; border-collapse: collapse;" width="100%"><tr><td style="border-top:hidden;border-bottom:hidden;vertical-align:middle;"><div align="center" style="vertical-align:middle;"><div align='center'><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253pt" height="260pt" viewBox="0.00 0.00 253.00 260.00">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 256)">
<title>G</title>
<!-- V2 -->
<g id="node1" class="node">
<title>V2</title>
<g id="a_node1"><a xlink:title="(5) V2 : 2.36888">
<ellipse fill="#6d416d" stroke="#4a4a4a" cx="119.15" cy="-234" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="119.15" y="-228.95" font-family="Times,serif" font-size="14.00" fill="white">V2</text>
</a>
</g>
</g>
<!-- Y -->
<g id="node6" class="node">
<title>Y</title>
<g id="a_node6"><a xlink:title="(7) Y : 4.74264">
<ellipse fill="#9898fd" stroke="#4a4a4a" cx="119.15" cy="-162" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="119.15" y="-156.95" font-family="Times,serif" font-size="14.00">Y</text>
</a>
</g>
</g>
<!-- V2->Y -->
<g id="edge7" class="edge">
<title>V2->Y</title>
<g id="a_edge7"><a xlink:title="5 → 7 : 0.3557323373948229">
<path fill="none" stroke="#4a4a4a" stroke-width="4.05" d="M119.15,-215.7C119.15,-209.76 119.15,-202.91 119.15,-196.15"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="4.05" points="122.69,-196.17 119.15,-186.17 115.6,-196.17 122.69,-196.17"/>
</a>
</g>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<g id="a_node2"><a xlink:title="(1) X2 : 2.12806">
<ellipse fill="#69395f" stroke="#4a4a4a" cx="48.15" cy="-90" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="48.15" y="-84.95" font-family="Times,serif" font-size="14.00" fill="white">X2</text>
</a>
</g>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<g id="a_node3"><a xlink:title="(2) X3 : 0.60072">
<ellipse fill="#4d0102" stroke="#4a4a4a" cx="168.15" cy="-90" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="168.15" y="-84.95" font-family="Times,serif" font-size="14.00" fill="white">X3</text>
</a>
</g>
</g>
<!-- X1 -->
<g id="node4" class="node">
<title>X1</title>
<g id="a_node4"><a xlink:title="(0) X1 : 2.20928">
<ellipse fill="#6a3b63" stroke="#4a4a4a" cx="113.15" cy="-18" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="113.15" y="-12.95" font-family="Times,serif" font-size="14.00" fill="white">X1</text>
</a>
</g>
</g>
<!-- X3->X1 -->
<g id="edge6" class="edge">
<title>X3->X1</title>
<g id="a_edge6"><a xlink:title="2 → 0 : 0.1449523282940688">
<path fill="none" stroke="#4a4a4a" stroke-width="1.63" d="M155.94,-73.46C149.17,-64.86 140.6,-53.94 132.91,-44.15"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="1.63" points="135.77,-42.13 126.84,-36.43 130.27,-46.46 135.77,-42.13"/>
</a>
</g>
</g>
<!-- V1 -->
<g id="node5" class="node">
<title>V1</title>
<g id="a_node5"><a xlink:title="(4) V1 : 2.32348">
<ellipse fill="#6c3f6a" stroke="#4a4a4a" cx="218.15" cy="-234" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="218.15" y="-228.95" font-family="Times,serif" font-size="14.00" fill="white">V1</text>
</a>
</g>
</g>
<!-- V1->X3 -->
<g id="edge8" class="edge">
<title>V1->X3</title>
<g id="a_edge8"><a xlink:title="4 → 2 : 0.08064324948891866">
<path fill="none" stroke="#4a4a4a" stroke-width="0.89" d="M224.7,-216.13C230.83,-197.61 237.58,-167.4 227.15,-144 220.86,-129.91 208.78,-118 197.17,-109.06"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.89" points="199.35,-106.32 189.18,-103.33 195.27,-112 199.35,-106.32"/>
</a>
</g>
</g>
<!-- V1->Y -->
<g id="edge12" class="edge">
<title>V1->Y</title>
<g id="a_edge12"><a xlink:title="4 → 7 : 0.35909777590832714">
<path fill="none" stroke="#4a4a4a" stroke-width="4.09" d="M199.99,-220.16C186.03,-210.29 166.43,-196.43 150.02,-184.83"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="4.09" points="152.37,-182.12 142.14,-179.26 148.24,-187.95 152.37,-182.12"/>
</a>
</g>
</g>
<!-- Y->X2 -->
<g id="edge2" class="edge">
<title>Y->X2</title>
<g id="a_edge2"><a xlink:title="7 → 1 : 0.44744214224683976">
<path fill="none" stroke="#4a4a4a" stroke-width="5.1" d="M104.43,-146.5C95.68,-137.86 84.31,-126.66 74.09,-116.58"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="5.1" points="77.55,-113.72 67.29,-109.88 71.28,-120.08 77.55,-113.72"/>
</a>
</g>
</g>
<!-- Y->X3 -->
<g id="edge10" class="edge">
<title>Y->X3</title>
<g id="a_edge10"><a xlink:title="7 → 2 : 0.1936401236606864">
<path fill="none" stroke="#4a4a4a" stroke-width="2.19" d="M130.26,-145.12C135.97,-136.97 143.06,-126.83 149.56,-117.54"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="2.19" points="152.31,-119.73 155.17,-109.53 146.57,-115.72 152.31,-119.73"/>
</a>
</g>
</g>
<!-- Y->X1 -->
<g id="edge5" class="edge">
<title>Y->X1</title>
<g id="a_edge5"><a xlink:title="7 → 0 : 0.44580207017503426">
<path fill="none" stroke="#4a4a4a" stroke-width="5.08" d="M118.41,-143.59C117.45,-120.9 115.75,-80.74 114.55,-52.16"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="5.08" points="119,-52.16 114.13,-42.36 110.11,-52.54 119,-52.16"/>
</a>
</g>
</g>
<!-- V3 -->
<g id="node7" class="node">
<title>V3</title>
<g id="a_node7"><a xlink:title="(6) V3 : 0.93270">
<ellipse fill="#530d16" stroke="#4a4a4a" cx="191.15" cy="-162" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="191.15" y="-156.95" font-family="Times,serif" font-size="14.00" fill="white">V3</text>
</a>
</g>
</g>
<!-- V3->X3 -->
<g id="edge1" class="edge">
<title>V3->X3</title>
<g id="a_edge1"><a xlink:title="6 → 2 : 0.041431414904579134">
<path fill="none" stroke="#4a4a4a" stroke-width="0.44" d="M185.58,-144.05C182.98,-136.14 179.82,-126.54 176.91,-117.69"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.44" points="180.32,-116.83 173.87,-108.42 173.67,-119.01 180.32,-116.83"/>
</a>
</g>
</g>
<!-- T -->
<g id="node8" class="node">
<title>T</title>
<g id="a_node8"><a xlink:title="(3) T : 0.95813">
<ellipse fill="#540e18" stroke="#4a4a4a" cx="37.15" cy="-234" rx="27" ry="18"/>
<text xml:space="preserve" text-anchor="middle" x="37.15" y="-228.95" font-family="Times,serif" font-size="14.00" fill="white">T</text>
</a>
</g>
</g>
<!-- T->X2 -->
<g id="edge3" class="edge">
<title>T->X2</title>
<g id="a_edge3"><a xlink:title="3 → 1 : 0.03641711816841564">
<path fill="none" stroke="#4a4a4a" stroke-width="0.38" d="M38.49,-215.59C40.37,-191.4 43.78,-147.36 46,-118.65"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.38" points="49.49,-118.93 46.78,-108.69 42.51,-118.39 49.49,-118.93"/>
</a>
</g>
</g>
<!-- T->X3 -->
<g id="edge11" class="edge">
<title>T->X3</title>
<g id="a_edge11"><a xlink:title="3 → 2 : 0.011792051404351245">
<path fill="none" stroke="#4a4a4a" stroke-width="0.1" d="M42.82,-215.95C49.88,-196.72 63.45,-165.35 83.15,-144 98.31,-127.56 119.68,-114.27 137.21,-105.1"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.1" points="138.47,-108.39 145.83,-100.76 135.32,-102.13 138.47,-108.39"/>
</a>
</g>
</g>
<!-- T->X1 -->
<g id="edge9" class="edge">
<title>T->X1</title>
<g id="a_edge9"><a xlink:title="3 → 0 : 0.03465357595238139">
<path fill="none" stroke="#4a4a4a" stroke-width="0.36" d="M28.22,-217.04C12.45,-186.5 -16.1,-118.72 12.15,-72 26.34,-48.53 54.74,-34.94 77.82,-27.41"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.36" points="78.55,-30.85 87.12,-24.61 76.54,-24.14 78.55,-30.85"/>
</a>
</g>
</g>
<!-- T->Y -->
<g id="edge4" class="edge">
<title>T->Y</title>
<g id="a_edge4"><a xlink:title="3 → 7 : 0.014757769936447396">
<path fill="none" stroke="#4a4a4a" stroke-width="0.13" d="M53.35,-219.17C65.36,-208.91 81.93,-194.77 95.44,-183.24"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" stroke-width="0.13" points="97.49,-186.09 102.82,-176.93 92.95,-180.76 97.49,-186.09"/>
</a>
</g>
</g>
</g>
</svg><br/><img style='vertical-align:middle'src='data:image/png;base64,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' alt="PyAgrum inline image"></div></div></td><td style="border-top:hidden;border-bottom:hidden;vertical-align:middle;"><div align="center" style="vertical-align:middle;"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="585pt" height="513pt" viewBox="0.00 0.00 585.00 513.00">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 508.5)">
<title>structs</title>
<text xml:space="preserve" text-anchor="middle" x="288.27" y="-7.2" font-family="Times,serif" font-size="14.00" fill="#4a4a4a">Inference in 0.27ms</text>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#e0e0e0" stroke="#000000" points="389.05,-120.5 295.05,-120.5 295.05,-24.5 389.05,-24.5 389.05,-120.5"/>
<svg viewBox="0 0 123.36 126.234141" width="94px" height="96px" preserveAspectRatio="xMinYMin meet" x="295.047" y="-120.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.414286</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 123.36 126.234141 L 123.36 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.805 89.760703 L 96.555 89.760703 L 96.555 34.320703 L 26.805 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.465714 89.760703 L 28.465714 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mfbfa7f0e94" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mfbfa7f0e94" x="28.465714" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.09 -->
<g transform="translate(31.063371 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.68 89.760703 L 61.68 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mfbfa7f0e94" x="61.68" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.15 -->
<g transform="translate(64.277656 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.894286 89.760703 L 94.894286 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mfbfa7f0e94" x="94.894286" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 4.78 -->
<g transform="translate(97.491942 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-17"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.769286 89.760703 L 36.769286 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="mc628bbc154" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#mc628bbc154" x="36.769286" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 45.072857 89.760703 L 45.072857 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#mc628bbc154" x="45.072857" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.376429 89.760703 L 53.376429 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#mc628bbc154" x="53.376429" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.983571 89.760703 L 69.983571 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#mc628bbc154" x="69.983571" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 78.287143 89.760703 L 78.287143 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#mc628bbc154" x="78.287143" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.590714 89.760703 L 86.590714 34.320703 " clip-path="url(#pd958ea3c1c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#mc628bbc154" x="86.590714" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m8a4c714004" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m8a4c714004" x="26.805" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.901875 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m8a4c714004" x="26.805" y="61.143419" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.901875 64.942247) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.805 89.760703 L 26.805 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.555 89.760703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.805 89.760703 L 96.555 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.805 34.320703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- X1 -->
<g transform="translate(53.7525 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-14" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=-0.63$; $\sigma=1.11$ -->
<g transform="translate(3.6 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-c9c" d="M 678 2272 L 4684 2272 L 4684 1741 L 678 1741 L 678 2272 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-c9c" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(270.166016 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(333.789062 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(365.576172 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(429.199219 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(492.822266 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(526.513672 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(558.300781 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(641.162109 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(744.433594 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(808.056641 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(839.84375 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(903.466797 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.465714 89.760703 L 35.108571 89.760703 L 35.108571 89.671226 L 28.465714 89.671226 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 35.108571 89.760703 L 41.751429 89.760703 L 41.751429 88.681972 L 35.108571 88.681972 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.751429 89.760703 L 48.394286 89.760703 L 48.394286 80.217057 L 41.751429 80.217057 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.394286 89.760703 L 55.037143 89.760703 L 55.037143 53.85669 L 48.394286 53.85669 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 55.037143 89.760703 L 61.68 89.760703 L 61.68 36.960703 L 55.037143 36.960703 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.68 89.760703 L 68.322857 89.760703 L 68.322857 56.795974 L 61.68 56.795974 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.322857 89.760703 L 74.965714 89.760703 L 74.965714 79.390017 L 68.322857 79.390017 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.965714 89.760703 L 81.608571 89.760703 L 81.608571 87.834405 L 74.965714 87.834405 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.608571 89.760703 L 88.251429 89.760703 L 88.251429 89.490171 L 81.608571 89.490171 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 88.251429 89.760703 L 94.894286 89.760703 L 94.894286 89.700463 L 88.251429 89.700463 z " clip-path="url(#pd958ea3c1c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="pd958ea3c1c">
<rect x="26.805" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#e0e0e0" stroke="#000000" points="492.05,-252.5 402.05,-252.5 402.05,-156.5 492.05,-156.5 492.05,-252.5"/>
<svg viewBox="0 0 118.018125 126.234141" width="90px" height="96px" preserveAspectRatio="xMinYMin meet" x="402.047" y="-252.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.442254</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 118.018125 126.234141 L 118.018125 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 L 96.253125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.163839 89.760703 L 28.163839 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m3923e6223e" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m3923e6223e" x="28.163839" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.44 -->
<g transform="translate(30.761496 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.378125 89.760703 L 61.378125 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m3923e6223e" x="61.378125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.19 -->
<g transform="translate(63.975781 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.592411 89.760703 L 94.592411 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m3923e6223e" x="94.592411" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.07 -->
<g transform="translate(97.190067 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.467411 89.760703 L 36.467411 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m95b88ddb49" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m95b88ddb49" x="36.467411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 44.770982 89.760703 L 44.770982 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m95b88ddb49" x="44.770982" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.074554 89.760703 L 53.074554 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m95b88ddb49" x="53.074554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.681696 89.760703 L 69.681696 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m95b88ddb49" x="69.681696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 77.985268 89.760703 L 77.985268 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m95b88ddb49" x="77.985268" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.288839 89.760703 L 86.288839 34.320703 " clip-path="url(#p92c738214e)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m95b88ddb49" x="86.288839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m2fe7918791" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m2fe7918791" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m2fe7918791" x="26.503125" y="59.024494" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.6 62.823322) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.253125 89.760703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- X2 -->
<g transform="translate(53.450625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-15" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=0.64$; $\sigma=1.12$ -->
<g transform="translate(8.338125 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.163839 89.760703 L 34.806696 89.760703 L 34.806696 89.740725 L 28.163839 89.740725 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 34.806696 89.760703 L 41.449554 89.760703 L 41.449554 89.658125 L 34.806696 89.658125 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.449554 89.760703 L 48.092411 89.760703 L 48.092411 88.936717 L 41.449554 88.936717 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.092411 89.760703 L 54.735268 89.760703 L 54.735268 83.923245 L 48.092411 83.923245 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 54.735268 89.760703 L 61.378125 89.760703 L 61.378125 65.554621 L 54.735268 65.554621 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.378125 89.760703 L 68.020982 89.760703 L 68.020982 36.960703 L 61.378125 36.960703 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.020982 89.760703 L 74.663839 89.760703 L 74.663839 43.275002 L 68.020982 43.275002 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.663839 89.760703 L 81.306696 89.760703 L 81.306696 75.484157 L 74.663839 75.484157 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.306696 89.760703 L 87.949554 89.760703 L 87.949554 88.168683 L 81.306696 88.168683 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 87.949554 89.760703 L 94.592411 89.760703 L 94.592411 89.664846 L 87.949554 89.664846 z " clip-path="url(#p92c738214e)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p92c738214e">
<rect x="26.503125" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#e0e0e0" stroke="#000000" points="313.55,-231 212.55,-231 212.55,-178 313.55,-178 313.55,-231"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="212.547" y="-231"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.463969</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 33.298965 62.040703 L 33.298965 49.720703 L 16.9625 49.720703 z " clip-path="url(#p9449c49d4b)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 112.226035 46.640703 L 112.226035 34.320703 L 16.9625 34.320703 z " clip-path="url(#p9449c49d4b)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#p9449c49d4b)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m36bf305568" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m36bf305568" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#p9449c49d4b)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m36bf305568" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#p9449c49d4b)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m36bf305568" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="mf47f3921d6" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mf47f3921d6" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#mf47f3921d6" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 14.64% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
<use xlink:href="#DejaVuSans-17" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 85.36% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-1b"/>
<use xlink:href="#DejaVuSans-18" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- X3 -->
<g transform="translate(64.835 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3b" d="M 403 4666 L 1081 4666 L 2241 2931 L 3406 4666 L 4084 4666 L 2584 2425 L 4184 0 L 3506 0 L 2194 1984 L 872 0 L 191 0 L 1856 2491 L 403 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3b"/>
<use xlink:href="#DejaVuSans-16" transform="translate(68.5 0)"/>
</g>
<!-- $\mu=0.15$; $\sigma=0.35$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p9449c49d4b">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- X3->X1 -->
<g id="edge6" class="edge">
<title>X3->X1</title>
<g id="a_edge6"><a xlink:title="2 → 0">
<path fill="none" stroke="#4a4a4a" d="M278.84,-177.51C287.09,-163.94 297.52,-146.78 307.51,-130.33"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="310.34,-132.41 312.54,-122.05 304.36,-128.78 310.34,-132.41"/>
</a>
</g>
</g>
<!-- T -->
<g id="node4" class="node">
<title>T</title>
<polygon fill="#e0e0e0" stroke="#000000" points="576.55,-483 475.55,-483 475.55,-430 576.55,-430 576.55,-483"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="475.547" y="-483"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.482938</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 59.385142 62.040703 L 59.385142 49.720703 L 16.9625 49.720703 z " clip-path="url(#pb1ae2330fc)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 86.139858 46.640703 L 86.139858 34.320703 L 16.9625 34.320703 z " clip-path="url(#pb1ae2330fc)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#pb1ae2330fc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m43dcc0fe89" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m43dcc0fe89" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#pb1ae2330fc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m43dcc0fe89" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#pb1ae2330fc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m43dcc0fe89" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="m12a0069fff" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m12a0069fff" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#m12a0069fff" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 38.01% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-16"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 61.99% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-19"/>
<use xlink:href="#DejaVuSans-14" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- T -->
<g transform="translate(69.097813 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-37" d="M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-37"/>
</g>
<!-- $\mu=0.38$; $\sigma=0.49$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="pb1ae2330fc">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- T->X1 -->
<g id="edge9" class="edge">
<title>T->X1</title>
<g id="a_edge9"><a xlink:title="3 → 0">
<path fill="none" stroke="#4a4a4a" d="M532.66,-429.9C545.62,-373.3 567.63,-236.29 501.05,-156.5 474.94,-125.22 433.99,-104.23 400.18,-91.19"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="401.5,-87.94 390.91,-87.75 399.07,-94.51 401.5,-87.94"/>
</a>
</g>
</g>
<!-- T->X2 -->
<g id="edge3" class="edge">
<title>T->X2</title>
<g id="a_edge3"><a xlink:title="3 → 1">
<path fill="none" stroke="#4a4a4a" d="M530.59,-429.51C535.32,-395.69 539.72,-335.39 521.05,-288.5 516.08,-276.03 508.35,-264.21 499.73,-253.61"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="502.48,-251.44 493.31,-246.15 497.18,-256.01 502.48,-251.44"/>
</a>
</g>
</g>
<!-- T->X3 -->
<g id="edge11" class="edge">
<title>T->X3</title>
<g id="a_edge11"><a xlink:title="3 → 2">
<path fill="none" stroke="#4a4a4a" d="M523.17,-429.53C518.09,-388.02 506.29,-309.28 488.05,-288.5 486.61,-286.86 390.81,-251.86 324.69,-227.84"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="325.97,-224.58 315.37,-224.46 323.58,-231.16 325.97,-224.58"/>
</a>
</g>
</g>
<!-- Y -->
<g id="node8" class="node">
<title>Y</title>
<polygon fill="#e0e0e0" stroke="#000000" points="479.05,-372.5 143.05,-372.5 143.05,-288.5 479.05,-288.5 479.05,-372.5"/>
<svg viewBox="0 0 446.143973 110.360703" width="336px" height="84px" preserveAspectRatio="xMinYMin meet" x="143.047" y="-372.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.674867</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 110.360703 L 446.143973 110.360703 L 446.143973 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 438.028125 89.760703 L 438.028125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 36.301339 89.760703 L 36.301339 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mbddeeff1f6" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mbddeeff1f6" x="36.301339" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -14.02 -->
<g transform="translate(20.183371 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-14" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(163.328125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(195.109375 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(258.734375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 232.265625 89.760703 L 232.265625 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mbddeeff1f6" x="232.265625" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 2.43 -->
<g transform="translate(221.132813 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-15"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 428.229911 89.760703 L 428.229911 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mbddeeff1f6" x="428.229911" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 18.88 -->
<g transform="translate(413.915848 104.358359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(222.65625 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 85.292411 89.760703 L 85.292411 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m097ef7dfbd" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m097ef7dfbd" x="85.292411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 134.283482 89.760703 L 134.283482 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m097ef7dfbd" x="134.283482" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 183.274554 89.760703 L 183.274554 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m097ef7dfbd" x="183.274554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 281.256696 89.760703 L 281.256696 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m097ef7dfbd" x="281.256696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 330.247768 89.760703 L 330.247768 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m097ef7dfbd" x="330.247768" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 379.238839 89.760703 L 379.238839 34.320703 " clip-path="url(#p1d249c79bc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m097ef7dfbd" x="379.238839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m2d74bd6691" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m2d74bd6691" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m2d74bd6691" x="26.503125" y="46.218836" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.1 -->
<g transform="translate(3.6 50.017664) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 438.028125 89.760703 L 438.028125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 438.028125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 438.028125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- Y -->
<g transform="translate(228.600938 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-3c" d="M -13 4666 L 666 4666 L 1959 2747 L 3244 4666 L 3922 4666 L 2272 2222 L 2272 0 L 1638 0 L 1638 2222 L -13 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-3c"/>
</g>
<!-- $\mu=3.81$; $\sigma=3.61$ -->
<g transform="translate(179.225625 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 36.301339 89.760703 L 42.833482 89.760703 L 42.833482 89.607814 L 36.301339 89.607814 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 42.833482 89.760703 L 49.365625 89.760703 L 49.365625 89.607513 L 42.833482 89.607513 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 49.365625 89.760703 L 55.897768 89.760703 L 55.897768 89.605899 L 49.365625 89.605899 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 55.897768 89.760703 L 62.429911 89.760703 L 62.429911 89.577135 L 55.897768 89.577135 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 62.429911 89.760703 L 68.962054 89.760703 L 68.962054 89.606188 L 62.429911 89.606188 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 68.962054 89.760703 L 75.494196 89.760703 L 75.494196 89.571292 L 68.962054 89.571292 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 75.494196 89.760703 L 82.026339 89.760703 L 82.026339 89.511984 L 75.494196 89.511984 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 82.026339 89.760703 L 88.558482 89.760703 L 88.558482 89.564643 L 82.026339 89.564643 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 88.558482 89.760703 L 95.090625 89.760703 L 95.090625 89.488508 L 88.558482 89.488508 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 95.090625 89.760703 L 101.622768 89.760703 L 101.622768 89.331257 L 95.090625 89.331257 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_17">
<path d="M 101.622768 89.760703 L 108.154911 89.760703 L 108.154911 89.241242 L 101.622768 89.241242 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_18">
<path d="M 108.154911 89.760703 L 114.687054 89.760703 L 114.687054 89.013339 L 108.154911 89.013339 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_19">
<path d="M 114.687054 89.760703 L 121.219196 89.760703 L 121.219196 88.879264 L 114.687054 88.879264 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_20">
<path d="M 121.219196 89.760703 L 127.751339 89.760703 L 127.751339 88.535016 L 121.219196 88.535016 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_21">
<path d="M 127.751339 89.760703 L 134.283482 89.760703 L 134.283482 87.750726 L 127.751339 87.750726 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_22">
<path d="M 134.283482 89.760703 L 140.815625 89.760703 L 140.815625 87.198911 L 134.283482 87.198911 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_23">
<path d="M 140.815625 89.760703 L 147.347768 89.760703 L 147.347768 86.493197 L 140.815625 86.493197 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_24">
<path d="M 147.347768 89.760703 L 153.879911 89.760703 L 153.879911 85.936591 L 147.347768 85.936591 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_25">
<path d="M 153.879911 89.760703 L 160.412054 89.760703 L 160.412054 84.264888 L 153.879911 84.264888 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_26">
<path d="M 160.412054 89.760703 L 166.944196 89.760703 L 166.944196 83.225565 L 160.412054 83.225565 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_27">
<path d="M 166.944196 89.760703 L 173.476339 89.760703 L 173.476339 80.824493 L 166.944196 80.824493 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_28">
<path d="M 173.476339 89.760703 L 180.008482 89.760703 L 180.008482 79.581858 L 173.476339 79.581858 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_29">
<path d="M 180.008482 89.760703 L 186.540625 89.760703 L 186.540625 76.518402 L 180.008482 76.518402 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_30">
<path d="M 186.540625 89.760703 L 193.072768 89.760703 L 193.072768 75.258441 L 186.540625 75.258441 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_31">
<path d="M 193.072768 89.760703 L 199.604911 89.760703 L 199.604911 71.020562 L 193.072768 71.020562 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_32">
<path d="M 199.604911 89.760703 L 206.137054 89.760703 L 206.137054 66.804902 L 199.604911 66.804902 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_33">
<path d="M 206.137054 89.760703 L 212.669196 89.760703 L 212.669196 61.215729 L 206.137054 61.215729 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_34">
<path d="M 212.669196 89.760703 L 219.201339 89.760703 L 219.201339 52.908098 L 212.669196 52.908098 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_35">
<path d="M 219.201339 89.760703 L 225.733482 89.760703 L 225.733482 54.285237 L 219.201339 54.285237 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_36">
<path d="M 225.733482 89.760703 L 232.265625 89.760703 L 232.265625 48.444429 L 225.733482 48.444429 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_37">
<path d="M 232.265625 89.760703 L 238.797768 89.760703 L 238.797768 46.140266 L 232.265625 46.140266 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_38">
<path d="M 238.797768 89.760703 L 245.329911 89.760703 L 245.329911 41.524311 L 238.797768 41.524311 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_39">
<path d="M 245.329911 89.760703 L 251.862054 89.760703 L 251.862054 36.960703 L 245.329911 36.960703 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_40">
<path d="M 251.862054 89.760703 L 258.394196 89.760703 L 258.394196 39.374441 L 251.862054 39.374441 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_41">
<path d="M 258.394196 89.760703 L 264.926339 89.760703 L 264.926339 37.65334 L 258.394196 37.65334 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_42">
<path d="M 264.926339 89.760703 L 271.458482 89.760703 L 271.458482 41.180198 L 264.926339 41.180198 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_43">
<path d="M 271.458482 89.760703 L 277.990625 89.760703 L 277.990625 46.743111 L 271.458482 46.743111 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_44">
<path d="M 277.990625 89.760703 L 284.522768 89.760703 L 284.522768 49.500913 L 277.990625 49.500913 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_45">
<path d="M 284.522768 89.760703 L 291.054911 89.760703 L 291.054911 55.273171 L 284.522768 55.273171 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_46">
<path d="M 291.054911 89.760703 L 297.587054 89.760703 L 297.587054 59.306405 L 291.054911 59.306405 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_47">
<path d="M 297.587054 89.760703 L 304.119196 89.760703 L 304.119196 65.813511 L 297.587054 65.813511 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_48">
<path d="M 304.119196 89.760703 L 310.651339 89.760703 L 310.651339 71.061451 L 304.119196 71.061451 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_49">
<path d="M 310.651339 89.760703 L 317.183482 89.760703 L 317.183482 75.447986 L 310.651339 75.447986 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_50">
<path d="M 317.183482 89.760703 L 323.715625 89.760703 L 323.715625 79.320329 L 317.183482 79.320329 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_51">
<path d="M 323.715625 89.760703 L 330.247768 89.760703 L 330.247768 82.483521 L 323.715625 82.483521 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_52">
<path d="M 330.247768 89.760703 L 336.779911 89.760703 L 336.779911 84.764066 L 330.247768 84.764066 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_53">
<path d="M 336.779911 89.760703 L 343.312054 89.760703 L 343.312054 86.952711 L 336.779911 86.952711 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_54">
<path d="M 343.312054 89.760703 L 349.844196 89.760703 L 349.844196 87.508419 L 343.312054 87.508419 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_55">
<path d="M 349.844196 89.760703 L 356.376339 89.760703 L 356.376339 88.068873 L 349.844196 88.068873 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_56">
<path d="M 356.376339 89.760703 L 362.908482 89.760703 L 362.908482 88.809107 L 356.376339 88.809107 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_57">
<path d="M 362.908482 89.760703 L 369.440625 89.760703 L 369.440625 89.174133 L 362.908482 89.174133 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_58">
<path d="M 369.440625 89.760703 L 375.972768 89.760703 L 375.972768 89.336046 L 369.440625 89.336046 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_59">
<path d="M 375.972768 89.760703 L 382.504911 89.760703 L 382.504911 89.36276 L 375.972768 89.36276 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_60">
<path d="M 382.504911 89.760703 L 389.037054 89.760703 L 389.037054 89.512438 L 382.504911 89.512438 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_61">
<path d="M 389.037054 89.760703 L 395.569196 89.760703 L 395.569196 89.577921 L 389.037054 89.577921 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_62">
<path d="M 395.569196 89.760703 L 402.101339 89.760703 L 402.101339 89.574236 L 395.569196 89.574236 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_63">
<path d="M 402.101339 89.760703 L 408.633482 89.760703 L 408.633482 89.604977 L 402.101339 89.604977 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_64">
<path d="M 408.633482 89.760703 L 415.165625 89.760703 L 415.165625 89.606008 L 408.633482 89.606008 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_65">
<path d="M 415.165625 89.760703 L 421.697768 89.760703 L 421.697768 89.606256 L 415.165625 89.606256 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_66">
<path d="M 421.697768 89.760703 L 428.229911 89.760703 L 428.229911 89.607736 L 421.697768 89.607736 z " clip-path="url(#p1d249c79bc)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p1d249c79bc">
<rect x="26.503125" y="34.320703" width="411.525" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- T->Y -->
<g id="edge4" class="edge">
<title>T->Y</title>
<g id="a_edge4"><a xlink:title="3 → 7">
<path fill="none" stroke="#4a4a4a" d="M480.98,-429.51C455.31,-414.7 422.38,-395.71 392.35,-378.39"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="394.44,-375.55 384.03,-373.59 390.94,-381.62 394.44,-375.55"/>
</a>
</g>
</g>
<!-- V1 -->
<g id="node5" class="node">
<title>V1</title>
<polygon fill="#e0e0e0" stroke="#000000" points="145.05,-504.5 51.05,-504.5 51.05,-408.5 145.05,-408.5 145.05,-504.5"/>
<svg viewBox="0 0 123.36 126.234141" width="94px" height="96px" preserveAspectRatio="xMinYMin meet" x="51.0472" y="-504.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.587160</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 123.36 126.234141 L 123.36 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.805 89.760703 L 96.555 89.760703 L 96.555 34.320703 L 26.805 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.465714 89.760703 L 28.465714 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mc46780cf02" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mc46780cf02" x="28.465714" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.44 -->
<g transform="translate(31.063371 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.68 89.760703 L 61.68 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mc46780cf02" x="61.68" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- -0.08 -->
<g transform="translate(64.277656 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-13" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.894286 89.760703 L 94.894286 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mc46780cf02" x="94.894286" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.28 -->
<g transform="translate(97.491942 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.769286 89.760703 L 36.769286 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m7a36774b20" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m7a36774b20" x="36.769286" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 45.072857 89.760703 L 45.072857 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#m7a36774b20" x="45.072857" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.376429 89.760703 L 53.376429 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#m7a36774b20" x="53.376429" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.983571 89.760703 L 69.983571 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#m7a36774b20" x="69.983571" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 78.287143 89.760703 L 78.287143 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#m7a36774b20" x="78.287143" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.590714 89.760703 L 86.590714 34.320703 " clip-path="url(#p877365b51c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#m7a36774b20" x="86.590714" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="m2e858a8ebd" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m2e858a8ebd" x="26.805" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.901875 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#m2e858a8ebd" x="26.805" y="55.773399" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.901875 59.572228) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.805 89.760703 L 26.805 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.555 89.760703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.805 89.760703 L 96.555 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.805 34.320703 L 96.555 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- V1 -->
<g transform="translate(53.758125 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-14" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=-0.59$; $\sigma=1.31$ -->
<g transform="translate(3.6 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-c9c" d="M 678 2272 L 4684 2272 L 4684 1741 L 678 1741 L 678 2272 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1c" d="M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-c9c" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(270.166016 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(333.789062 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(365.576172 0.78125)"/>
<use xlink:href="#DejaVuSans-1c" transform="translate(429.199219 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(492.822266 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(526.513672 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(558.300781 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(641.162109 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(744.433594 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(808.056641 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(839.84375 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(903.466797 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.465714 89.760703 L 35.108571 89.760703 L 35.108571 89.708222 L 28.465714 89.708222 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 35.108571 89.760703 L 41.751429 89.760703 L 41.751429 88.51273 L 35.108571 88.51273 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.751429 89.760703 L 48.394286 89.760703 L 48.394286 77.226905 L 41.751429 77.226905 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.394286 89.760703 L 55.037143 89.760703 L 55.037143 47.919909 L 48.394286 47.919909 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 55.037143 89.760703 L 61.68 89.760703 L 61.68 36.960703 L 55.037143 36.960703 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.68 89.760703 L 68.322857 89.760703 L 68.322857 58.623843 L 61.68 58.623843 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.322857 89.760703 L 74.965714 89.760703 L 74.965714 75.466963 L 68.322857 75.466963 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.965714 89.760703 L 81.608571 89.760703 L 81.608571 85.665112 L 74.965714 85.665112 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.608571 89.760703 L 88.251429 89.760703 L 88.251429 89.230976 L 81.608571 89.230976 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 88.251429 89.760703 L 94.894286 89.760703 L 94.894286 89.736762 L 88.251429 89.736762 z " clip-path="url(#p877365b51c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="p877365b51c">
<rect x="26.805" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- V1->X3 -->
<g id="edge8" class="edge">
<title>V1->X3</title>
<g id="a_edge8"><a xlink:title="4 → 2">
<path fill="none" stroke="#4a4a4a" d="M50.85,-421.27C36.21,-407.88 21.87,-391.23 14.05,-372.5 -0.34,-338.05 -7.78,-318.79 14.05,-288.5 56.32,-229.84 141.85,-212.01 200.77,-206.93"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="200.96,-210.43 210.67,-206.19 200.44,-203.45 200.96,-210.43"/>
</a>
</g>
</g>
<!-- V1->Y -->
<g id="edge12" class="edge">
<title>V1->Y</title>
<g id="a_edge12"><a xlink:title="4 → 7">
<path fill="none" stroke="#4a4a4a" d="M145.32,-427.98C170.31,-413.43 201.69,-395.16 230.4,-378.45"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="231.83,-381.66 238.72,-373.61 228.31,-375.61 231.83,-381.66"/>
</a>
</g>
</g>
<!-- V2 -->
<g id="node6" class="node">
<title>V2</title>
<polygon fill="#e0e0e0" stroke="#000000" points="356.05,-504.5 266.05,-504.5 266.05,-408.5 356.05,-408.5 356.05,-504.5"/>
<svg viewBox="0 0 118.018125 126.234141" width="90px" height="96px" preserveAspectRatio="xMinYMin meet" x="266.047" y="-504.5"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.616818</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 126.234141 L 118.018125 126.234141 L 118.018125 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 L 96.253125 34.320703 L 26.503125 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 28.163839 89.760703 L 28.163839 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m4647df513a" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m4647df513a" x="28.163839" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- -5.14 -->
<g transform="translate(30.761496 122.634141) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-10" d="M 313 2009 L 1997 2009 L 1997 1497 L 313 1497 L 313 2009 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-10"/>
<use xlink:href="#DejaVuSans-18" transform="translate(36.078125 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(99.703125 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(131.484375 0)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(195.109375 0)"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 61.378125 89.760703 L 61.378125 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m4647df513a" x="61.378125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0.07 -->
<g transform="translate(63.975781 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1a" d="M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1a" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 94.592411 89.760703 L 94.592411 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m4647df513a" x="94.592411" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 5.28 -->
<g transform="translate(97.190067 119.026328) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-15" d="M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-18"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 36.467411 89.760703 L 36.467411 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="ma07993465d" d="M 0 0 L 0 4 " style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#ma07993465d" x="36.467411" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 44.770982 89.760703 L 44.770982 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#ma07993465d" x="44.770982" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 53.074554 89.760703 L 53.074554 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#ma07993465d" x="53.074554" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_13">
<path d="M 69.681696 89.760703 L 69.681696 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#ma07993465d" x="69.681696" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_15">
<path d="M 77.985268 89.760703 L 77.985268 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#ma07993465d" x="77.985268" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_17">
<path d="M 86.288839 89.760703 L 86.288839 34.320703 " clip-path="url(#pa12e93bb7c)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#ma07993465d" x="86.288839" y="89.760703" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_19">
<defs>
<path id="mdb55f81362" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mdb55f81362" x="26.503125" y="89.760703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 0.0 -->
<g transform="translate(3.6 93.559531) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_20">
<g>
<use xlink:href="#mdb55f81362" x="26.503125" y="55.400986" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 0.2 -->
<g transform="translate(3.6 59.199814) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-13"/>
<use xlink:href="#DejaVuSans-11" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(95.40625 0)"/>
</g>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 26.503125 89.760703 L 26.503125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 96.253125 89.760703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 26.503125 89.760703 L 96.253125 89.760703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 26.503125 34.320703 L 96.253125 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_6">
<!-- V2 -->
<g transform="translate(53.45625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-15" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=0.60$; $\sigma=1.32$ -->
<g transform="translate(8.338125 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-19" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-15" transform="translate(819.677734 0.78125)"/>
</g>
</g>
<g id="patch_7">
<path d="M 28.163839 89.760703 L 34.806696 89.760703 L 34.806696 89.729209 L 28.163839 89.729209 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_8">
<path d="M 34.806696 89.760703 L 41.449554 89.760703 L 41.449554 89.092729 L 34.806696 89.092729 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_9">
<path d="M 41.449554 89.760703 L 48.092411 89.760703 L 48.092411 85.066084 L 41.449554 85.066084 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_10">
<path d="M 48.092411 89.760703 L 54.735268 89.760703 L 54.735268 75.149522 L 48.092411 75.149522 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_11">
<path d="M 54.735268 89.760703 L 61.378125 89.760703 L 61.378125 58.502099 L 54.735268 58.502099 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_12">
<path d="M 61.378125 89.760703 L 68.020982 89.760703 L 68.020982 36.960703 L 61.378125 36.960703 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_13">
<path d="M 68.020982 89.760703 L 74.663839 89.760703 L 74.663839 45.422923 L 68.020982 45.422923 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_14">
<path d="M 74.663839 89.760703 L 81.306696 89.760703 L 81.306696 75.185798 L 74.663839 75.185798 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_15">
<path d="M 81.306696 89.760703 L 87.949554 89.760703 L 87.949554 87.961574 L 81.306696 87.961574 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
<g id="patch_16">
<path d="M 87.949554 89.760703 L 94.592411 89.760703 L 94.592411 89.643465 L 87.949554 89.643465 z " clip-path="url(#pa12e93bb7c)" style="fill: #8fbc8f; stroke: #006400; stroke-linejoin: miter"/>
</g>
</g>
</g>
<defs>
<clipPath id="pa12e93bb7c">
<rect x="26.503125" y="34.320703" width="69.75" height="55.44"/>
</clipPath>
</defs>
</svg>
</g>
<!-- V2->Y -->
<g id="edge7" class="edge">
<title>V2->Y</title>
<g id="a_edge7"><a xlink:title="5 → 7">
<path fill="none" stroke="#4a4a4a" d="M311.05,-408.27C311.05,-400.45 311.05,-392.3 311.05,-384.35"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="314.55,-384.44 311.05,-374.44 307.55,-384.44 314.55,-384.44"/>
</a>
</g>
</g>
<!-- V3 -->
<g id="node7" class="node">
<title>V3</title>
<polygon fill="#e0e0e0" stroke="#000000" points="124.55,-357 23.55,-357 23.55,-304 124.55,-304 124.55,-357"/>
<svg viewBox="0 0 132.1625 69.140703" width="101px" height="53px" preserveAspectRatio="xMinYMin meet" x="23.5472" y="-357"> <metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-18T12:00:38.638840</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.11.1, <https://matplotlib.org/></dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 69.140703 L 132.1625 69.140703 L 132.1625 0 L 0 0 z " style="fill: #e0e0e0"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 L 128.5625 34.320703 L 16.9625 34.320703 z " style="fill: #ffffff"/>
</g>
<g id="patch_3">
<path d="M 16.9625 62.040703 L 55.853037 62.040703 L 55.853037 49.720703 L 16.9625 49.720703 z " clip-path="url(#p7e409248cc)" style="fill: #8fbc8f"/>
</g>
<g id="patch_4">
<path d="M 16.9625 46.640703 L 89.671963 46.640703 L 89.671963 34.320703 L 16.9625 34.320703 z " clip-path="url(#p7e409248cc)" style="fill: #8fbc8f"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " clip-path="url(#p7e409248cc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="m7d53845190" d="M 0 0 L 0 3.5 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m7d53845190" x="16.9625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 72.7625 62.040703 L 72.7625 34.320703 " clip-path="url(#p7e409248cc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#m7d53845190" x="72.7625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " clip-path="url(#p7e409248cc)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#m7d53845190" x="128.5625" y="62.040703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<defs>
<path id="m820a2e71a0" d="M 0 0 L -3.5 0 " style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m820a2e71a0" x="16.9625" y="55.880703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1 -->
<g transform="translate(3.6 59.679531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-14" d="M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-14"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_8">
<g>
<use xlink:href="#m820a2e71a0" x="16.9625" y="40.480703" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 0 -->
<g transform="translate(3.6 44.279531) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-13" d="M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-13"/>
</g>
</g>
</g>
</g>
<g id="patch_5">
<path d="M 16.9625 62.040703 L 16.9625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 128.5625 62.040703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 16.9625 62.040703 L 128.5625 62.040703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_8">
<path d="M 16.9625 34.320703 L 128.5625 34.320703 " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_3">
<!-- 34.85% -->
<g style="opacity: 0.7" transform="translate(90.432812 59.638359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-16" d="M 2597 2516 Q 3050 2419 3304 2112 Q 3559 1806 3559 1356 Q 3559 666 3084 287 Q 2609 -91 1734 -91 Q 1441 -91 1130 -33 Q 819 25 488 141 L 488 750 Q 750 597 1062 519 Q 1375 441 1716 441 Q 2309 441 2620 675 Q 2931 909 2931 1356 Q 2931 1769 2642 2001 Q 2353 2234 1838 2234 L 1294 2234 L 1294 2753 L 1863 2753 Q 2328 2753 2575 2939 Q 2822 3125 2822 3475 Q 2822 3834 2567 4026 Q 2313 4219 1838 4219 Q 1578 4219 1281 4162 Q 984 4106 628 3988 L 628 4550 Q 988 4650 1302 4700 Q 1616 4750 1894 4750 Q 2613 4750 3031 4423 Q 3450 4097 3450 3541 Q 3450 3153 3228 2886 Q 3006 2619 2597 2516 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-17" d="M 2419 4116 L 825 1625 L 2419 1625 L 2419 4116 z M 2253 4666 L 3047 4666 L 3047 1625 L 3713 1625 L 3713 1100 L 3047 1100 L 3047 0 L 2419 0 L 2419 1100 L 313 1100 L 313 1709 L 2253 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-11" d="M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1b" d="M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-18" d="M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-8" d="M 4653 2053 Q 4381 2053 4226 1822 Q 4072 1591 4072 1178 Q 4072 772 4226 539 Q 4381 306 4653 306 Q 4919 306 5073 539 Q 5228 772 5228 1178 Q 5228 1588 5073 1820 Q 4919 2053 4653 2053 z M 4653 2450 Q 5147 2450 5437 2106 Q 5728 1763 5728 1178 Q 5728 594 5436 251 Q 5144 -91 4653 -91 Q 4153 -91 3862 251 Q 3572 594 3572 1178 Q 3572 1766 3864 2108 Q 4156 2450 4653 2450 z M 1428 4353 Q 1159 4353 1004 4120 Q 850 3888 850 3481 Q 850 3069 1003 2837 Q 1156 2606 1428 2606 Q 1700 2606 1854 2837 Q 2009 3069 2009 3481 Q 2009 3884 1853 4118 Q 1697 4353 1428 4353 z M 4250 4750 L 4750 4750 L 1831 -91 L 1331 -91 L 4250 4750 z M 1428 4750 Q 1922 4750 2215 4408 Q 2509 4066 2509 3481 Q 2509 2891 2217 2550 Q 1925 2209 1428 2209 Q 931 2209 642 2551 Q 353 2894 353 3481 Q 353 4063 643 4406 Q 934 4750 1428 4750 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-16"/>
<use xlink:href="#DejaVuSans-17" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_4">
<!-- 65.15% -->
<g style="opacity: 0.7" transform="translate(90.432812 44.238359) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-19" d="M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-19"/>
<use xlink:href="#DejaVuSans-18" transform="translate(63.625 0)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(127.25 0)"/>
<use xlink:href="#DejaVuSans-14" transform="translate(159.03125 0)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(222.65625 0)"/>
<use xlink:href="#DejaVuSans-8" transform="translate(286.28125 0)"/>
</g>
</g>
<g id="text_5">
<!-- V3 -->
<g transform="translate(64.840625 13.918359) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-39" d="M 1831 0 L 50 4666 L 709 4666 L 2188 738 L 3669 4666 L 4325 4666 L 2547 0 L 1831 0 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-16" transform="translate(68.40625 0)"/>
</g>
<!-- $\mu=0.35$; $\sigma=0.48$ -->
<g transform="translate(19.7225 28.320703) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-Oblique-350" d="M -84 -1331 L 856 3500 L 1434 3500 L 1009 1322 Q 997 1256 987 1175 Q 978 1094 978 1013 Q 978 722 1161 565 Q 1344 409 1684 409 Q 2147 409 2431 671 Q 2716 934 2816 1459 L 3213 3500 L 3788 3500 L 3266 809 Q 3253 750 3248 706 Q 3244 663 3244 628 Q 3244 531 3283 486 Q 3322 441 3406 441 Q 3438 441 3492 456 Q 3547 472 3647 513 L 3559 50 Q 3422 -19 3297 -55 Q 3172 -91 3053 -91 Q 2847 -91 2730 40 Q 2613 172 2613 403 Q 2438 153 2195 31 Q 1953 -91 1625 -91 Q 1334 -91 1117 43 Q 900 178 831 397 L 494 -1331 L -84 -1331 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-20" d="M 678 2906 L 4684 2906 L 4684 2381 L 678 2381 L 678 2906 z M 678 1631 L 4684 1631 L 4684 1100 L 678 1100 L 678 1631 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-1e" d="M 750 3309 L 1409 3309 L 1409 2516 L 750 2516 L 750 3309 z M 750 794 L 1409 794 L 1409 256 L 897 -744 L 494 -744 L 750 256 L 750 794 z " transform="scale(0.015625)"/>
<path id="DejaVuSans-3" transform="scale(0.015625)"/>
<path id="DejaVuSans-Oblique-357" d="M 2219 3044 Q 1744 3044 1422 2700 Q 1081 2341 969 1747 Q 844 1119 1044 756 Q 1241 397 1706 397 Q 2166 397 2503 759 Q 2844 1122 2966 1747 Q 3075 2319 2881 2700 Q 2700 3044 2219 3044 z M 2309 3503 L 4219 3500 L 4106 2925 L 3463 2925 Q 3706 2438 3575 1747 Q 3406 888 2884 400 Q 2359 -91 1609 -91 Q 856 -91 525 400 Q 194 888 363 1747 Q 528 2609 1050 3097 Q 1484 3503 2309 3503 z " transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-Oblique-350" transform="translate(0 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(83.105469 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(186.376953 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(250 0.78125)"/>
<use xlink:href="#DejaVuSans-16" transform="translate(281.787109 0.78125)"/>
<use xlink:href="#DejaVuSans-18" transform="translate(345.410156 0.78125)"/>
<use xlink:href="#DejaVuSans-1e" transform="translate(409.033203 0.78125)"/>
<use xlink:href="#DejaVuSans-3" transform="translate(442.724609 0.78125)"/>
<use xlink:href="#DejaVuSans-Oblique-357" transform="translate(474.511719 0.78125)"/>
<use xlink:href="#DejaVuSans-20" transform="translate(557.373047 0.78125)"/>
<use xlink:href="#DejaVuSans-13" transform="translate(660.644531 0.78125)"/>
<use xlink:href="#DejaVuSans-11" transform="translate(724.267578 0.78125)"/>
<use xlink:href="#DejaVuSans-17" transform="translate(756.054688 0.78125)"/>
<use xlink:href="#DejaVuSans-1b" transform="translate(819.677734 0.78125)"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p7e409248cc">
<rect x="16.9625" y="34.320703" width="111.6" height="27.72"/>
</clipPath>
</defs>
</svg>
</g>
<!-- V3->X3 -->
<g id="edge1" class="edge">
<title>V3->X3</title>
<g id="a_edge1"><a xlink:title="6 → 2">
<path fill="none" stroke="#4a4a4a" d="M111.71,-303.53C119.09,-298.51 126.79,-293.31 134.05,-288.5 159.8,-271.42 188.7,-252.78 212.61,-237.49"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="214.37,-240.53 220.91,-232.19 210.6,-234.62 214.37,-240.53"/>
</a>
</g>
</g>
<!-- Y->X1 -->
<g id="edge5" class="edge">
<title>Y->X1</title>
<g id="a_edge5"><a xlink:title="7 → 0">
<path fill="none" stroke="#4a4a4a" d="M317.83,-288.39C319.64,-276.8 321.52,-264.17 323.05,-252.5 328.3,-212.41 333.09,-167.13 336.55,-132.13"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="340.03,-132.48 337.53,-122.19 333.07,-131.8 340.03,-132.48"/>
</a>
</g>
</g>
<!-- Y->X2 -->
<g id="edge2" class="edge">
<title>Y->X2</title>
<g id="a_edge2"><a xlink:title="7 → 1">
<path fill="none" stroke="#4a4a4a" d="M356.33,-288.21C368.26,-277.33 381.24,-265.5 393.56,-254.27"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="395.81,-256.95 400.84,-247.63 391.09,-251.78 395.81,-256.95"/>
</a>
</g>
</g>
<!-- Y->X3 -->
<g id="edge10" class="edge">
<title>Y->X3</title>
<g id="a_edge10"><a xlink:title="7 → 2">
<path fill="none" stroke="#4a4a4a" d="M295.06,-288.21C289.28,-273.28 282.8,-256.53 277.19,-242.03"/>
<polygon fill="#4a4a4a" stroke="#4a4a4a" points="280.51,-240.93 273.64,-232.87 273.99,-243.46 280.51,-240.93"/>
</a>
</g>
</g>
</g>
</svg></div></td></tr></table>
We are encountering challenges at the outset, as numerous causal relationships are misspecified, with multiple covariates incorrectly identified as causes of the outcome. Despite this, the intervention variable is correctly identified as a cause of the outcome. With limited expectations, let us now examine the estimation results.
```python
cee = gcee.CausalEffectEstimation(df, learned_causal_model)
```
```python
cee.identifyAdjustmentSet(intervention="T", outcome="Y")
```
Randomized Controlled Trial adjustment found.
Supported estimators include:
- CausalModelEstimator
- DM
If the outcome variable is a cause of other covariates in the causal graph,
Backdoor estimators may also be used.
'Randomized Controlled Trial'
```python
cee.fitCausalBNEstimator()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2 * 100)} %")
```
ACE linear = 0.9117019082155032, MAPE = 54.41490458922485 %
```python
cee.fitDM()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = -2.8178899464668765, MAPE = 240.8944973233438 %
The results are exceptionally poor. In an attempt to address this issue, we will investigate whether controlling for covariates that are identified as causes of the outcome in the causal graph improves the estimation.
```python
cee.useBackdoorAdjustment(intervention="T", outcome="Y", confounders={"V1", "V2"})
```
```python
cee.fitSLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 1.0322661497673613, MAPE = 48.386692511631935 %
```python
cee.fitTLearner()
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 1.0630992615644919, MAPE = 46.84503692177541 %
One might assume that the estimation methods are not sufficiently sophisticated, given that the default meta-learners utilize Linear Regression as the base model. To address this, we will assess whether employing `XGBRegressor` as the base learner within the `XLearner` framework improves the estimation results.
```python
cee.fitXLearner(learner="XGBRegressor")
tau_hat = cee.estimateCausalEffect()
print(f"ACE linear = {tau_hat}, MAPE = {abs((tau_hat - 2) / 2) * 100} %")
```
ACE linear = 1.0628687066049827, MAPE = 46.85656466975087 %
The results show only marginal improvement, insufficient to draw reliable conclusions about the true causal effect.
This underscores the critical role of domain knowledge in accurately specifying the underlying causal structure. Even the most sophisticated estimation methods can falter when the causal structure is incorrectly specified.