Establish a Column Name Expectation
In this exercise, you'll be writing an Expectation regarding the schema of the Renewable Power Generation dataset.
The Renewable Power Generation dataset has already been loaded into a Batch, assigned to the variable batch. 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.
# Create the Expectation
col_name_expectation = gx.expectations.____(
column=____
)
# Validate the Expectation
validation_results = batch.____(
expect=____
)
# Print out success status of Validation Results
print(____.____)