meridian.model.eda.eda_outcome.EDAOutcome

A dataclass for the outcomes of a single EDA check function.

An EDA check function can discover multiple issues. This object groups all of those individual issues, reported as a list of EDAFinding objects.

check_type The type of the EDA check that is being performed.
findings A list of all individual issues discovered by the check.
analysis_artifacts A list of analysis artifacts from the EDA check.

Methods

get_findings_by_cause_and_severity

View source

Helper method to retrieve findings by cause and severity.

get_geo_artifacts

View source

Returns the geo-level analysis artifacts.

Returns a list to account for checks that produce multiple artifacts at the same level (e.g. Standard Deviation check).

get_national_artifacts

View source

Returns the national-level analysis artifacts.

Returns a list to account for checks that produce multiple artifacts at the same level.

get_overall_artifacts

View source

Returns the overall-level analysis artifacts.

Returns a list to account for checks that produce multiple artifacts at the same level.

__eq__

Return self==value.