Invert a Conditional Expectation
It's important to keep in mind that, as with conditional probability, Conditional Expectations are not necessarily equal to their inverse. An Expectation of Column A conditional on Column B might succeed, but its inverse may not. Let's explore that in this exercise.
A Batch connected to the Shein Footwear dataset has already been created and 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.
# Establish Conditional Expectation
expectation = gx.expectations.ExpectColumnValuesToBeInSet(
column=____,
value_set=____,
condition_parser='pandas',
row_condition='____.isnull()',
)
# Run Expectation
results = batch.____(____=____)
# Print success status
print(results.success)