@@ -1378,7 +1378,9 @@ def sample_conditional_prior(
13781378 "predicted_prior", and "smoothed_prior".
13791379 """
13801380
1381- return self ._sample_conditional (idata , "prior" , random_seed , method , ** kwargs )
1381+ return self ._sample_conditional (
1382+ idata = idata , group = "prior" , random_seed = random_seed , method = method , ** kwargs
1383+ )
13821384
13831385 def sample_conditional_posterior (
13841386 self , idata : InferenceData , random_seed : RandomState | None = None , method = "svd" , ** kwargs
@@ -1412,7 +1414,9 @@ def sample_conditional_posterior(
14121414 "predicted_posterior", and "smoothed_posterior".
14131415 """
14141416
1415- return self ._sample_conditional (idata , "posterior" , random_seed , method , ** kwargs )
1417+ return self ._sample_conditional (
1418+ idata = idata , group = "posterior" , random_seed = random_seed , method = method , ** kwargs
1419+ )
14161420
14171421 def sample_unconditional_prior (
14181422 self ,
@@ -1470,7 +1474,13 @@ def sample_unconditional_prior(
14701474 """
14711475
14721476 return self ._sample_unconditional (
1473- idata , "prior" , steps , use_data_time_dim , random_seed , method , ** kwargs
1477+ idata = idata ,
1478+ group = "prior" ,
1479+ steps = steps ,
1480+ use_data_time_dim = use_data_time_dim ,
1481+ random_seed = random_seed ,
1482+ method = method ,
1483+ ** kwargs ,
14741484 )
14751485
14761486 def sample_unconditional_posterior (
@@ -1527,7 +1537,13 @@ def sample_unconditional_posterior(
15271537 """
15281538
15291539 return self ._sample_unconditional (
1530- idata , "posterior" , steps , use_data_time_dim , random_seed , method , ** kwargs
1540+ idata = idata ,
1541+ group = "posterior" ,
1542+ steps = steps ,
1543+ use_data_time_dim = use_data_time_dim ,
1544+ random_seed = random_seed ,
1545+ method = method ,
1546+ ** kwargs ,
15311547 )
15321548
15331549 def sample_statespace_matrices (
0 commit comments