Validate your Expectation Suite
Now that you've created your Expectation Suite, it's time to validate it! The Renewable Power Generation dataset has already been loaded into a Batch assigned to the variable batch
. An Expectation Suite containing a single Expectation has been created and assigned to the variable suite
. The Expectation is assigned to the variable expectation
. Great Expectations and pandas are available as gx
and pd
, respectively.
Diese Übung ist Teil des Kurses
Introduction to Data Quality with Great Expectations
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Validate Suite
validation_results = batch.____(expect=suite)
# Describe Validation Results
print(validation_results.____())