return relative scores as part of results
This commit is contained in:
parent
83732349a7
commit
bf948e12b7
2 changed files with 2 additions and 2 deletions
|
@ -58,4 +58,4 @@ Grouped Feedback Items
|
||||||
>>> res = resp01.getGroupedResult()
|
>>> res = resp01.getGroupedResult()
|
||||||
>>> for qugroup, fi, score in res:
|
>>> for qugroup, fi, score in res:
|
||||||
... print fi.text, round(score, 2)
|
... print fi.text, round(score, 2)
|
||||||
fi02 1.75
|
fi02 0.58
|
||||||
|
|
|
@ -105,5 +105,5 @@ class Response(object):
|
||||||
if scoreMax > 0.0:
|
if scoreMax > 0.0:
|
||||||
relScore = score / scoreMax
|
relScore = score / scoreMax
|
||||||
wScore = relScore * len(qugroup.feedbackItems) - 0.00001
|
wScore = relScore * len(qugroup.feedbackItems) - 0.00001
|
||||||
result.append((qugroup, qugroup.feedbackItems[int(wScore)], wScore))
|
result.append((qugroup, qugroup.feedbackItems[int(wScore)], relScore))
|
||||||
return result
|
return result
|
||||||
|
|
Loading…
Add table
Reference in a new issue