├── .github └── workflows │ └── docker_push.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── data └── avocado.csv ├── docs ├── profiling │ ├── expectations │ │ └── data_dir │ │ │ └── subdir_reader │ │ │ └── avocado │ │ │ └── BasicDatasetProfiler.html │ ├── index.html │ ├── static │ │ ├── fonts │ │ │ └── HKGrotesk │ │ │ │ ├── HKGrotesk-Bold.otf │ │ │ │ ├── HKGrotesk-BoldItalic.otf │ │ │ │ ├── HKGrotesk-Italic.otf │ │ │ │ ├── HKGrotesk-Light.otf │ │ │ │ ├── HKGrotesk-LightItalic.otf │ │ │ │ ├── HKGrotesk-Medium.otf │ │ │ │ ├── HKGrotesk-MediumItalic.otf │ │ │ │ ├── HKGrotesk-Regular.otf │ │ │ │ ├── HKGrotesk-SemiBold.otf │ │ │ │ └── HKGrotesk-SemiBoldItalic.otf │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── glossary_scroller.gif │ │ │ ├── iterative-dev-loop.png │ │ │ ├── logo-long-vector.svg │ │ │ ├── logo-long.png │ │ │ ├── short-logo-vector.svg │ │ │ ├── short-logo.png │ │ │ └── validation_failed_unexpected_values.gif │ │ └── styles │ │ │ ├── data_docs_custom_styles_template.css │ │ │ └── data_docs_default_styles.css │ └── validations │ │ └── data_dir │ │ └── subdir_reader │ │ └── avocado │ │ └── BasicDatasetProfiler │ │ └── profiling │ │ └── 20210122T133834.551810Z │ │ └── 1ec02ddad151a698fc4c07d64a389f91.html └── validation │ ├── expectations │ └── check_avocado_data.html │ ├── index.html │ ├── static │ ├── fonts │ │ └── HKGrotesk │ │ │ ├── HKGrotesk-Bold.otf │ │ │ ├── HKGrotesk-BoldItalic.otf │ │ │ ├── HKGrotesk-Italic.otf │ │ │ ├── HKGrotesk-Light.otf │ │ │ ├── HKGrotesk-LightItalic.otf │ │ │ ├── HKGrotesk-Medium.otf │ │ │ ├── HKGrotesk-MediumItalic.otf │ │ │ ├── HKGrotesk-Regular.otf │ │ │ ├── HKGrotesk-SemiBold.otf │ │ │ └── HKGrotesk-SemiBoldItalic.otf │ ├── images │ │ ├── favicon.ico │ │ ├── glossary_scroller.gif │ │ ├── iterative-dev-loop.png │ │ ├── logo-long-vector.svg │ │ ├── logo-long.png │ │ ├── short-logo-vector.svg │ │ ├── short-logo.png │ │ └── validation_failed_unexpected_values.gif │ └── styles │ │ ├── data_docs_custom_styles_template.css │ │ └── data_docs_default_styles.css │ └── validations │ └── check_avocado_data │ └── 20210119T131032.261169Z │ └── 20210119T131032.261169Z │ └── a52e8a35d5f03815b708c7306612dbde.html ├── figures ├── batch.png ├── checkpoint.png ├── data_context.png ├── expectation_suite.png ├── in_out.png └── validation_operator.png ├── great_expectations ├── .gitignore ├── expectations │ └── .ge_store_backend_id ├── great_expectations.yml ├── notebooks │ ├── pandas │ │ └── validation_playground.ipynb │ ├── spark │ │ └── validation_playground.ipynb │ └── sql │ │ └── validation_playground.ipynb └── plugins │ └── custom_data_docs │ └── styles │ └── data_docs_custom_styles.css ├── requirements.txt └── tutorial_great_expectations.ipynb /.github/workflows/docker_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/.github/workflows/docker_push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/README.md -------------------------------------------------------------------------------- /data/avocado.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/data/avocado.csv -------------------------------------------------------------------------------- /docs/profiling/expectations/data_dir/subdir_reader/avocado/BasicDatasetProfiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/expectations/data_dir/subdir_reader/avocado/BasicDatasetProfiler.html -------------------------------------------------------------------------------- /docs/profiling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/index.html -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Bold.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Italic.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Light.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Medium.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-Regular.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf -------------------------------------------------------------------------------- /docs/profiling/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf -------------------------------------------------------------------------------- /docs/profiling/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/favicon.ico -------------------------------------------------------------------------------- /docs/profiling/static/images/glossary_scroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/glossary_scroller.gif -------------------------------------------------------------------------------- /docs/profiling/static/images/iterative-dev-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/iterative-dev-loop.png -------------------------------------------------------------------------------- /docs/profiling/static/images/logo-long-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/logo-long-vector.svg -------------------------------------------------------------------------------- /docs/profiling/static/images/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/logo-long.png -------------------------------------------------------------------------------- /docs/profiling/static/images/short-logo-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/short-logo-vector.svg -------------------------------------------------------------------------------- /docs/profiling/static/images/short-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/short-logo.png -------------------------------------------------------------------------------- /docs/profiling/static/images/validation_failed_unexpected_values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/images/validation_failed_unexpected_values.gif -------------------------------------------------------------------------------- /docs/profiling/static/styles/data_docs_custom_styles_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/styles/data_docs_custom_styles_template.css -------------------------------------------------------------------------------- /docs/profiling/static/styles/data_docs_default_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/static/styles/data_docs_default_styles.css -------------------------------------------------------------------------------- /docs/profiling/validations/data_dir/subdir_reader/avocado/BasicDatasetProfiler/profiling/20210122T133834.551810Z/1ec02ddad151a698fc4c07d64a389f91.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/profiling/validations/data_dir/subdir_reader/avocado/BasicDatasetProfiler/profiling/20210122T133834.551810Z/1ec02ddad151a698fc4c07d64a389f91.html -------------------------------------------------------------------------------- /docs/validation/expectations/check_avocado_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/expectations/check_avocado_data.html -------------------------------------------------------------------------------- /docs/validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/index.html -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-Bold.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-Italic.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-Light.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-Medium.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-Regular.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf -------------------------------------------------------------------------------- /docs/validation/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf -------------------------------------------------------------------------------- /docs/validation/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/favicon.ico -------------------------------------------------------------------------------- /docs/validation/static/images/glossary_scroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/glossary_scroller.gif -------------------------------------------------------------------------------- /docs/validation/static/images/iterative-dev-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/iterative-dev-loop.png -------------------------------------------------------------------------------- /docs/validation/static/images/logo-long-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/logo-long-vector.svg -------------------------------------------------------------------------------- /docs/validation/static/images/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/logo-long.png -------------------------------------------------------------------------------- /docs/validation/static/images/short-logo-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/short-logo-vector.svg -------------------------------------------------------------------------------- /docs/validation/static/images/short-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/short-logo.png -------------------------------------------------------------------------------- /docs/validation/static/images/validation_failed_unexpected_values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/images/validation_failed_unexpected_values.gif -------------------------------------------------------------------------------- /docs/validation/static/styles/data_docs_custom_styles_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/styles/data_docs_custom_styles_template.css -------------------------------------------------------------------------------- /docs/validation/static/styles/data_docs_default_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/static/styles/data_docs_default_styles.css -------------------------------------------------------------------------------- /docs/validation/validations/check_avocado_data/20210119T131032.261169Z/20210119T131032.261169Z/a52e8a35d5f03815b708c7306612dbde.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/docs/validation/validations/check_avocado_data/20210119T131032.261169Z/20210119T131032.261169Z/a52e8a35d5f03815b708c7306612dbde.html -------------------------------------------------------------------------------- /figures/batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/batch.png -------------------------------------------------------------------------------- /figures/checkpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/checkpoint.png -------------------------------------------------------------------------------- /figures/data_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/data_context.png -------------------------------------------------------------------------------- /figures/expectation_suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/expectation_suite.png -------------------------------------------------------------------------------- /figures/in_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/in_out.png -------------------------------------------------------------------------------- /figures/validation_operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/figures/validation_operator.png -------------------------------------------------------------------------------- /great_expectations/.gitignore: -------------------------------------------------------------------------------- 1 | uncommitted/ -------------------------------------------------------------------------------- /great_expectations/expectations/.ge_store_backend_id: -------------------------------------------------------------------------------- 1 | store_backend_id = 95d69e85-c578-4eae-9368-efa33a7304c5 -------------------------------------------------------------------------------- /great_expectations/great_expectations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/great_expectations/great_expectations.yml -------------------------------------------------------------------------------- /great_expectations/notebooks/pandas/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/great_expectations/notebooks/pandas/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/notebooks/spark/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/great_expectations/notebooks/spark/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/notebooks/sql/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/great_expectations/notebooks/sql/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/requirements.txt -------------------------------------------------------------------------------- /tutorial_great_expectations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarootsio/tutorial-great-expectations/HEAD/tutorial_great_expectations.ipynb --------------------------------------------------------------------------------