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.
Este ejercicio forma parte del curso
Introduction to Data Quality with Great Expectations
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Validate Suite
validation_results = batch.____(expect=suite)
# Describe Validation Results
print(validation_results.____())