Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sdaza committed Dec 11, 2024
1 parent 9085b5e commit a06a921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiment_utils/experiment_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def __create_formula(self, outcome_variable, type: str = 'regression'):

if len(reg_covs) > 0:
zreg_covs = [f"z_{cov}" for cov in reg_covs]
formula = formula_dict[type] + ' + '.join(zreg_covs)
formula = formula_dict[type] + ' + ' + ' + '.join(zreg_covs)
else:
formula = formula_dict[type]

Expand Down

0 comments on commit a06a921

Please sign in to comment.