Generate Profile object with dataset's characteristics (with rules / expectations) from given dataset (as pandas dataframe).
(self, dataset: pd.DataFrame)
| 25 | class Profiler: |
| 26 | @abc.abstractmethod |
| 27 | def analyze_dataset(self, dataset: pd.DataFrame) -> Profile: |
| 28 | """ |
| 29 | Generate Profile object with dataset's characteristics (with rules / expectations) |
| 30 | from given dataset (as pandas dataframe). |
| 31 | """ |
| 32 | ... |
| 33 | |
| 34 | @abc.abstractmethod |
| 35 | def to_proto(self): ... |
no outgoing calls
no test coverage detected