3

这是关于 Python 中的 Great Expectations 模块,主要用于数据质量检查(我发现他们的文档不足)。所以我一直在尝试在我的笔记本上设置数据上下文(使用本地数据源) - 如中所述:

https://docs.greatexpectations.io/en/latest/guides/how_to_guides/configuring_data_contexts/how_to_instantiate_a_data_context_without_a_yml_file.html#how-to-guides-configuring-data-contexts-how-to-instantiate-a-data-context-without- a-yml 文件

以下是我的代码:

from great_expectations.data_context.types.base import DataContextConfig
from great_expectations.data_context.types.base import DatasourceConfig
from great_expectations.data_context.types.base import FilesystemStoreBackendDefaults
from great_expectations.data_context import BaseDataContext

data_context_config = DataContextConfig(
    datasources={
        "debaprc_test": DatasourceConfig(
            class_name="PandasDatasource",
            batch_kwargs_generators={
                "subdir_reader": {
                    "class_name": "SubdirReaderBatchKwargsGenerator",
                    "base_directory": "/Users/debaprc/Downloads"              
                }
            },
        )
    },
    store_backend_defaults=FilesystemStoreBackendDefaults(root_directory="/Users/debaprc/GE_Test/New/")
)

context = BaseDataContext(project_config=data_context_config)

这是我得到的错误:

base_directory must be an absolute path if root_directory is not provided

我究竟做错了什么?

4

1 回答 1

3

非常感谢您使用 Great Expectations。这是我们最新升级的检查点功能的一个已知问题,该功能已在我们的开发分支中修复。请从开发分支安装或等到我们本周发布的下一个版本 0.13.9。

于 2021-02-08T16:26:41.047 回答