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.
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.
# Establish missingness Expectation
expectation = gx.expectations.____(
column="name"
)
# Run the Expectation
validation_results = batch.____(expect=expectation)
# Print the success status
print(validation_results.____)