Great Expectations
Great Expectation integration for ZenML.
The Great Expectations integration enables you to use Great Expectations as a way of profiling and validating your data.
GreatExpectationsIntegration
Bases: Integration
Definition of Great Expectations integration for ZenML.
Source code in src/zenml/integrations/great_expectations/__init__.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
activate()
classmethod
Activate the Great Expectations integration.
Source code in src/zenml/integrations/great_expectations/__init__.py
37 38 39 40 |
|
flavors()
classmethod
Declare the stack component flavors for the Great Expectations integration.
Returns:
Type | Description |
---|---|
List[Type[Flavor]]
|
List of stack component flavors for this integration. |
Source code in src/zenml/integrations/great_expectations/__init__.py
42 43 44 45 46 47 48 49 50 51 52 53 |
|
get_requirements(target_os=None)
classmethod
Method to get the requirements for the integration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_os
|
Optional[str]
|
The target operating system to get the requirements for. |
None
|
Returns:
Type | Description |
---|---|
List[str]
|
A list of requirements. |
Source code in src/zenml/integrations/great_expectations/__init__.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|