You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue
A clear and concise description of what the bug is.
When asking the notebook to "Stratify my model by the ages young and old where young and old can become old, but old cannot become young" the resulting code block produces
model = stratify(
template_model=model,
key= "Age",
strata=['young', 'old'],
structure= [['young', 'old']],
directed=True,
cartesian_control=False,
modify_names=True,
concepts_to_stratify=None, #If none given, will stratify all concepts.
params_to_stratify= None, #If none given, will stratify all parameters.
param_renaming_uses_strata_names = True
)
directed should be False
The text was updated successfully, but these errors were encountered:
Describe the issue
A clear and concise description of what the bug is.
When asking the notebook to "Stratify my model by the ages young and old where young and old can become old, but old cannot become young" the resulting code block produces
model = stratify(
template_model=model,
key= "Age",
strata=['young', 'old'],
structure= [['young', 'old']],
directed=True,
cartesian_control=False,
modify_names=True,
concepts_to_stratify=None, #If none given, will stratify all concepts.
params_to_stratify= None, #If none given, will stratify all parameters.
param_renaming_uses_strata_names = True
)
directed
should be FalseThe text was updated successfully, but these errors were encountered: