Great Expectations로 배우는 데이터 품질 입문
Davina Moossazadeh
Data Scientist
의도한 목적에 맞는 데이터셋의 적합도




모델의 성능은 입력 데이터만큼만 좋습니다!

Great Expectations (GX) - 데이터 품질 관리 플랫폼
기대사항(Expectation) - 데이터에 대한 검증 가능한 주장

데이터 컨텍스트 - GX 배포의 주요 진입점
gx 별칭으로 Great Expectations 임포트:
import great_expectations as gx
get_context()로 데이터 컨텍스트 생성:
context = gx.get_context()print(context)
{ "analytics_enabled": true,
"checkpoint_store_name": "default_checkpoint_store",
"config_variables_file_path": "uncommitted/config_variables.yml",
"config_version": 4.0,
"data_context_id": "5b407294-b17c-43e3-aa5f-4f8a4741e772",
"expectations_store_name": "default_expectations_store",
"fluent_datasources": {},
"plugins_directory": "plugins/",
"stores": {},
"validation_results_store_name": "default_validations_store" }
Great Expectations로 배우는 데이터 품질 입문