We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b0ced commit b7dd941Copy full SHA for b7dd941
Orange/widgets/visualize/owboxplot.py
@@ -494,12 +494,13 @@ def compute_box_data(self):
494
self.dist = []
495
self.conts = contingency.get_contingency(
496
dataset, attr, self.group_var)
497
+ group_var_labels = self.group_var.values + ["Missing value"]
498
if self.is_continuous:
499
stats, label_texts = [], []
- for i, cont in enumerate(self.conts):
500
+ for i, cont in enumerate(self.conts.array_with_unknowns):
501
if np.sum(cont[1]):
502
stats.append(BoxData(cont, attr, i, self.group_var))
- label_texts.append(self.group_var.values[i])
503
+ label_texts.append(group_var_labels[i])
504
self.stats = stats
505
self.label_txts_all = label_texts
506
else:
0 commit comments