Get startedGet started for free

Create your Data Context

As we discussed, Data Contexts are the primary entry point for a Great Expectations deployment, and they are the first step for creating Expectations. In this exercise, you'll practice creating your own Data Context.

This exercise is part of the course

Introduction to Data Quality with Great Expectations

View Course

Exercise instructions

  • Import great_expectations as gx.
  • Create a Data Context, and assign it to the variable context.
  • Print out the metadata associated with your Data Context.

Hands-on interactive exercise

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

# Import Great Expectations
import ____ as ____

# Create Data Context
context = gx.____()

# Print Data Context metadata
print(____)
Edit and Run Code