Wprowadzenie do jakości danych z Great Expectations
Davina Moossazadeh
Data Scientist
expectation = gx.expectations.ExpectTableColumnCountToEqual(
value=10
)
suite = gx.ExpectationSuite(
name="my_suite"
)
# Add Expectation to Suite
suite.add_expectation(
expectation=expectation
)
# Create another Expectation Suite
another_suite = gx.ExpectationSuite(name="my_other_suite")
# Add the same Expectation to the new Suite
another_suite.add_expectation(expectation=expectation)
Oczekiwania nie mogą należeć jednocześnie do wielu zestawów:
RuntimeError: Cannot add Expectation because it already belongs to an
ExpectationSuite. If you want to update an existing Expectation, please call
Expectation.save(). If you are copying this Expectation to a new ExpectationSuite,
please copy it first (the core expectations and some others support
copy(expectation)) and set `Expectation.id = None`.
If you are copying this Expectation to a new ExpectationSuite, please copy it first
(the core expectations and some others support copy(expectation)) and set
`Expectation.id = None`.
Skopiuj oczekiwanie, ustaw jego .id na None i dodaj je do nowego zestawu bez błędów:
expectation_copy = expectation.copy()expectation_copy.id = None
another_suite.add_expectation(
expectation=expectation_copy
)
print(
expectation_copy in another_suite.expectations
)
True
Dodawanie
.add_expectation()
suite.add_expectation(
expectation=expectation
)
Usuwanie
.delete_expectation()
suite.delete_expectation(
expectation=expectation
)
Zaktualizuj atrybut .value i zapisz zmiany:
expectation = gx.expectations.ExpectTableColumnCountToEqual( value=10 )expectation.value = 11expectation.save()
Oczekiwanie musi należeć do zestawu, w przeciwnym razie:
RuntimeError: Expectation must be added to ExpectationSuite before it can be saved.
suite = gx.ExpectationSuite(name="my_suite")
validation_definition = gx.ValidationDefinition(
data=batch_definition, suite=suite, name="my_validation_definition"
)
# Define Expectation col_name_expectation = gx.expectations.ExpectColumnToExist(column="GHI")# Add Expectation to Suite suite.add_expectation(expectation=col_name_expectation)# Run Validation Definition associated with the Suite validation_results = validation_definition.run()
Zapisz zmiany w zestawie przed uruchomieniem definicji walidacji, aby uniknąć błędów:
validation_results = validation_definition.run()
ResourceFreshnessAggregateError: ExpectationSuite 'my_suite' has changed since it
has last been saved. Please update with `<SUITE_OBJECT>.save()`, then try your
action again.
Użyj metody .save(), aby zapisać zestaw i uruchomić definicję walidacji bez błędów:
suite.save()validation_results = validation_definition.run()print(validation_results.success)
False
Kopiowanie oczekiwania:
expectation_copy = expectation.copy()
expectation_copy.id = None
Sprawdzanie, czy oczekiwanie należy do zestawu:
expectation in suite.expectations
Usuwanie oczekiwania:
suite.delete_expectation(expectation)
Aktualizacja wartości oczekiwania:
expectation.value = new_value
Zapisywanie zmian w oczekiwaniu:
expectation.save()
Zapisywanie zmian w zestawie oczekiwań:
suite.save()
Wprowadzenie do jakości danych z Great Expectations