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.
This exercise is part of the course
Introduction to Data Quality with Great Expectations
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Validate Suite
validation_results = batch.____(expect=suite)
# Describe Validation Results
print(validation_results.____())