Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
semihakbayrak committed Sep 24, 2024
1 parent 0306c22 commit 27ebffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/causal_validation/validation/rmspe.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class RMSPETest(PlaceboTest):
"""

def execute(self, verbose: bool = True) -> RMSPETestResult:
treatment_results, pseuod_treatment_results = {}, {}
treatment_results, pseudo_treatment_results = {}, {}
datasets = self.dataset_dict
n_datasets = len(datasets)
n_control = sum([d.n_units for d in datasets.values()])
Expand Down Expand Up @@ -129,5 +129,5 @@ def execute(self, verbose: bool = True) -> RMSPETestResult:
)
return RMSPETestResult(
treatment_test_results=treatment_results,
pseudo_treatment_test_statistics=pseuod_treatment_results,
pseudo_treatment_test_statistics=pseudo_treatment_results,
)

0 comments on commit 27ebffa

Please sign in to comment.