ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Data Quality with Great Expectations

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

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

# Print the success status
print(validation_results.____)
Editar e executar o código