ComeçarComece de graça

Establish a Column Name Expectation

In this exercise, you'll be writing an Expectation regarding the schema of the Renewable Power Generation dataset.

The Renewable Power Generation dataset has already been loaded into a Batch, assigned to the variable batch. 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.

# Create the Expectation
col_name_expectation = gx.expectations.____(
  column=____
)

# Validate the Expectation
validation_results = batch.____(
  expect=____
)

# Print out success status of Validation Results
print(____.____)
Editar e executar o código