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.
Diese Übung ist Teil des Kurses
Introduction to Data Quality with Great Expectations
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Create the Expectation
col_name_expectation = gx.expectations.____(
column=____
)
# Validate the Expectation
validation_results = batch.____(
expect=____
)
# Print out success status of Validation Results
print(____.____)