Get startedGet started for free

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.

This exercise is part of the course

Introduction to Data Quality with Great Expectations

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Establish missingness Expectation
expectation = gx.expectations.____(
  column="name"
)

# Run the Expectation
validation_results = batch.____(expect=expectation)

# Print the success status
print(validation_results.____)
Edit and Run Code