We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75f8d51 commit e6fd28dCopy full SHA for e6fd28d
1 file changed
reddwarf/utils/stats.py
@@ -92,7 +92,7 @@ def is_statement_disagree_significant(row: pd.Series, confidence=0.90) -> bool:
92
def is_statement_significant(row: pd.Series, confidence=0.90) -> bool:
93
"Decide whether we should count a statement in a group as being representative."
94
# Require at least some agree or disagree votes (not just passes)
95
- if row["na"] == 0 and row["nd"] == 0
+ if row["na"] == 0 and row["nd"] == 0:
96
return False
97
is_agreement_significant = is_statement_agree_significant(row, confidence)
98
is_disagreement_significant = is_statement_disagree_significant(row, confidence)
0 commit comments