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.
Cet exercice fait partie du cours
Introduction to Data Quality with Great Expectations
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Create the Expectation
col_name_expectation = gx.expectations.____(
column=____
)
# Validate the Expectation
validation_results = batch.____(
expect=____
)
# Print out success status of Validation Results
print(____.____)