Features | AWS | GCP | Azure | Databricks |
Data pipeline | Data Pipeline | Dataflow | Data Factory | Spark |
Feature Store | Feature Store | --- | --- | Feature Store |
Model Monitoring | Model Monitor | --- | [Azure Monitor](https://docs.microsoft.com/en-us/azure/machine-learning/monitor-azure-machine-learnin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success": false, | |
"results": [ | |
{ | |
"expectation_config": { | |
"kwargs": { | |
"column_list": [ | |
"flight_number", | |
"date", | |
"time_utc", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df_ge = ge.dataset.PandasDataset(df) #Load pd dataframe into great_expectations (GE) | |
#Define a rule to define the order and fields that should exist | |
df_ge.expect_table_columns_to_match_ordered_list(['flight_number', | |
'date', | |
'time_utc', | |
'booster_version', | |
'launch_site', | |
'payload', | |
'customer', |