Skip to content

Commit

Permalink
Fix MKDAChi2.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed May 4, 2022
1 parent 60ef55a commit 4d025cf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nimare/meta/cbma/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,15 @@ class PairwiseCBMAEstimator(CBMAEstimator):
__init__ (called automatically).
"""

def _compute_summarystat_est(self, ma_values):
"""Calculate the Estimator's summary statistic.
This method is only included because CBMAEstimator has it as an abstract method.
PairwiseCBMAEstimators are not constructed uniformly enough for this structure to work
consistently.
"""
raise NotImplementedError

def fit(self, dataset1, dataset2, drop_invalid=True):
"""Fit Estimator to two Datasets.
Expand Down

0 comments on commit 4d025cf

Please sign in to comment.