ComenzarEmpieza gratis

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 ejercicio forma parte del curso

Introduction to Data Quality with Great Expectations

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

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

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

# Print the success status
print(validation_results.____)
Editar y ejecutar código