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.
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.
# Create the Expectation
col_name_expectation = gx.expectations.____(
column=____
)
# Validate the Expectation
validation_results = batch.____(
expect=____
)
# Print out success status of Validation Results
print(____.____)