AnyFailed
class AnyFailed(
none_is_ok: bool = False,
nan_is_ok: bool = False,
tags: TagsSpec | None = field(default=None, kw_only=True),
)
Bases: BoolCriteria
Categories: dq-operator
A boolean criteria that selects rows where at least one boolean
classifier fails (False). Use with Filter, Select or
Fail.
Examples
Filter(AnyFailed())
Scope it to the classifiers carrying a tag:
AnyFailed(tags=["required"])
Parameters
parameter
Optional tags; only the classifiers carrying a matching tag are considered.
Methods
method
to_dictdef to_dict() -> dict[str, Any]