ComeçarComece de graça

Validate your Expectation Suite

Now that you've created your Expectation Suite, it's time to validate it! The Renewable Power Generation dataset has already been loaded into a Batch assigned to the variable batch. An Expectation Suite containing a single Expectation has been created and assigned to the variable suite. The Expectation is assigned to the variable expectation. 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.

# Validate Suite
validation_results = batch.____(expect=suite)

# Describe Validation Results
print(validation_results.____())
Editar e executar o código