Skip to content

Commit c2371f7

Browse files
authored
Merge pull request #2742 from BlazZupan/predictions-space-bracket
[FIX] Predictions: space added before bracket in meta name.
2 parents 0feba87 + 92c2a26 commit c2371f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/evaluate/owpredictions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ def _classification_output_columns(self):
499499
newcolumns += [p.results[0].reshape((-1, 1)) for p in slots]
500500

501501
if self.output_probabilities:
502-
newmetas += [ContinuousVariable(name="%s(%s)" % (p.name, value))
502+
newmetas += [ContinuousVariable(name="%s (%s)" % (p.name, value))
503503
for p in slots for value in self.class_values]
504504
newcolumns += [p.results[1] for p in slots]
505505
return newmetas, newcolumns

0 commit comments

Comments
 (0)