Establish row-level Expectations
In this exercise, you'll practice writing some column-specific Expectations at the row level. You'll be using the same Shein footwear dataset from the video. You can learn more about the dataset here.
The Batch has already been assigned to a variable called batch
and loaded with the Shein Footwear dataset. 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.
# Establish missingness Expectation
expectation = gx.expectations.____(
column="name"
)
# Run the Expectation
validation_results = batch.____(expect=expectation)
# Print the success status
print(validation_results.____)