Read the Flags

Start with five pinned observations. The rule is value >= 6, so values equal to 6 pass too. The flagged plot marks the passing points: Tue 7, Thu 9, and Fri 6. The final readout counts 3 passing rows and 2 failing rows.

A tiny threshold readout: choose one target value, flag the observations that meet it, and count pass/fail rows.

highlighted = computed this step

Load observations

Start with 5 pinned observations.

observations\text{observations}
Clean Rows Used for the First EDA PassdayordersMon4Tue7Wed5Thu9Fri6

Apply the threshold rule

Use one rule: pass when value is at least 6.

value at least threshold\text{value at least threshold}
Threshold Rule: value >= 6dayvaluestatusMon4failTue7passWed5failThu9passFri6pass

Flag passing points

Flag the 3 passing points: Tue 7, Thu 9, and Fri 6.

flag pass points\text{flag pass points}
Observations flagged by thresholddayvalue02468104Mon7Tuepass5Wed9Thupass6Fripass

Count pass and fail

Conclusion: 3 rows pass and 2 rows fail the threshold.

pass fail count\text{pass fail count}
Pass/Fail Readoutreadoutvaluerulevalue >= 6pass rows3fail rows2