We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f261386 commit b084b9cCopy full SHA for b084b9c
causal_testing/data_collection/data_collector.py
@@ -18,6 +18,7 @@ class DataCollector(ABC):
18
19
def __init__(self, scenario: Scenario):
20
self.scenario = scenario
21
+ self.data_checked = False
22
23
@abstractmethod
24
def collect_data(self, **kwargs) -> pd.DataFrame:
@@ -140,7 +141,6 @@ class ObservationalDataCollector(DataCollector):
140
141
def __init__(self, scenario: Scenario, data: pd.DataFrame):
142
super().__init__(scenario)
143
self.data = data
- self.data_checked = False
144
145
146
"""Read a pandas dataframe and filter to remove
0 commit comments