forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathowlineplot.py
More file actions
769 lines (644 loc) · 27.9 KB
/
owlineplot.py
File metadata and controls
769 lines (644 loc) · 27.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
from xml.sax.saxutils import escape
import numpy as np
import scipy.sparse as sp
from AnyQt.QtCore import Qt, QSize, QLineF, pyqtSignal as Signal
from AnyQt.QtGui import QPainter, QPen, QColor
from AnyQt.QtWidgets import QApplication, QGraphicsLineItem
import pyqtgraph as pg
from pyqtgraph.functions import mkPen
from pyqtgraph.graphicsItems.ViewBox import ViewBox
from Orange.data import Table, DiscreteVariable
from Orange.data.sql.table import SqlTable
from Orange.statistics.util import countnans, nanmean, nanmin, nanmax, nanstd
from Orange.widgets import gui, report
from Orange.widgets.settings import (
Setting, ContextSetting, DomainContextHandler
)
from Orange.widgets.utils.annotated_data import (
create_annotated_table, ANNOTATED_DATA_SIGNAL_NAME
)
from Orange.widgets.utils.itemmodels import DomainModel
from Orange.widgets.utils.plot import OWPlotGUI, SELECT, PANNING, ZOOMING
from Orange.widgets.utils.sql import check_sql_input
from Orange.widgets.utils.widgetpreview import WidgetPreview
from Orange.widgets.visualize.owdistributions import LegendItem
from Orange.widgets.widget import OWWidget, Input, Output, Msg
def ccw(a, b, c):
"""
Checks whether three points are listed in a counterclockwise order.
"""
ax, ay = (a[:, 0], a[:, 1]) if a.ndim == 2 else (a[0], a[1])
bx, by = (b[:, 0], b[:, 1]) if b.ndim == 2 else (b[0], b[1])
cx, cy = (c[:, 0], c[:, 1]) if c.ndim == 2 else (c[0], c[1])
return (cy - ay) * (bx - ax) > (by - ay) * (cx - ax)
def intersects(a, b, c, d):
"""
Checks whether line segment a (given points a and b) intersects with line
segment b (given points c and d).
"""
return np.logical_and(ccw(a, c, d) != ccw(b, c, d),
ccw(a, b, c) != ccw(a, b, d))
def line_intersects_profiles(p1, p2, table):
"""
Checks if a line intersects any line segments.
Parameters
----------
p1, p2 : ndarray
Endpoints of the line, given x coordinate as p_[0]
and y coordinate as p_[1].
table : ndarray
An array of shape m x n x p; where m is number of connected points
for a individual profile (i. e. number of features), n is number
of instances, p is number of coordinates (x and y).
Returns
-------
result : ndarray
Array of bools with shape of number of instances in the table.
"""
res = np.zeros(len(table[0]), dtype=bool)
for i in range(len(table) - 1):
res = np.logical_or(res, intersects(p1, p2, table[i], table[i + 1]))
return res
class LinePlotStyle:
DEFAULT_COLOR = QColor(Qt.darkGray)
SELECTION_LINE_COLOR = QColor(Qt.black)
SELECTION_LINE_WIDTH = 2
UNSELECTED_LINE_ALPHA = 100
UNSELECTED_LINE_ALPHA_SEL = 50
SELECTED_LINE_WIDTH = 3
SELECTED_LINE_ALPHA = 170
RANGE_ALPHA = 25
SELECTED_RANGE_ALPHA = 50
MEAN_WIDTH = 6
MEAN_DARK_FACTOR = 110
class LinePlotAxisItem(pg.AxisItem):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._ticks = {}
def set_ticks(self, ticks):
self._ticks = dict(enumerate(ticks, 1)) if ticks else {}
def tickStrings(self, values, scale, spacing):
return [self._ticks.get(v * scale, "") for v in values]
class LinePlotViewBox(ViewBox):
selection_changed = Signal(np.ndarray)
def __init__(self):
super().__init__(enableMenu=False)
self._profile_items = None
self._can_select = True
self._graph_state = SELECT
self.setMouseMode(self.PanMode)
pen = mkPen(LinePlotStyle.SELECTION_LINE_COLOR,
width=LinePlotStyle.SELECTION_LINE_WIDTH)
self.selection_line = QGraphicsLineItem()
self.selection_line.setPen(pen)
self.selection_line.setZValue(1e9)
self.addItem(self.selection_line, ignoreBounds=True)
def update_selection_line(self, button_down_pos, current_pos):
p1 = self.childGroup.mapFromParent(button_down_pos)
p2 = self.childGroup.mapFromParent(current_pos)
self.selection_line.setLine(QLineF(p1, p2))
self.selection_line.resetTransform()
self.selection_line.show()
def set_graph_state(self, state):
self._graph_state = state
def enable_selection(self, enable):
self._can_select = enable
def get_selected(self, p1, p2):
if self._profile_items is None:
return np.array(False)
return line_intersects_profiles(np.array([p1.x(), p1.y()]),
np.array([p2.x(), p2.y()]),
self._profile_items)
def add_profiles(self, y):
if sp.issparse(y):
y = y.todense()
self._profile_items = np.array(
[np.vstack((np.full((1, y.shape[0]), i + 1), y[:, i].flatten())).T
for i in range(y.shape[1])])
def remove_profiles(self):
self._profile_items = None
def mouseDragEvent(self, event, axis=None):
if self._graph_state == SELECT and axis is None and self._can_select:
event.accept()
if event.button() == Qt.LeftButton:
self.update_selection_line(event.buttonDownPos(), event.pos())
if event.isFinish():
self.selection_line.hide()
p1 = self.childGroup.mapFromParent(
event.buttonDownPos(event.button()))
p2 = self.childGroup.mapFromParent(event.pos())
self.selection_changed.emit(self.get_selected(p1, p2))
elif self._graph_state == ZOOMING or self._graph_state == PANNING:
event.ignore()
super().mouseDragEvent(event, axis=axis)
else:
event.ignore()
def mouseClickEvent(self, event):
if event.button() == Qt.RightButton:
self.autoRange()
self.enableAutoRange()
else:
event.accept()
self.selection_changed.emit(np.array(False))
def reset(self):
self._profile_items = None
self._can_select = True
self._graph_state = SELECT
class LinePlotGraph(pg.PlotWidget):
def __init__(self, parent):
self.bottom_axis = LinePlotAxisItem(orientation="bottom")
super().__init__(parent, viewBox=LinePlotViewBox(),
background="w", enableMenu=False,
axisItems={"bottom": self.bottom_axis})
self.view_box = self.getViewBox()
self.selection = set()
self.legend = self._create_legend(((1, 0), (1, 0)))
self.getPlotItem().buttonsHidden = True
self.setRenderHint(QPainter.Antialiasing, True)
def _create_legend(self, anchor):
legend = LegendItem()
legend.setParentItem(self.view_box)
legend.restoreAnchor(anchor)
legend.hide()
return legend
def update_legend(self, variable):
self.legend.clear()
self.legend.hide()
if variable and variable.is_discrete:
for name, color in zip(variable.values, variable.colors):
c = QColor(*color)
dots = pg.ScatterPlotItem(pen=c, brush=c, size=10, shape="s")
self.legend.addItem(dots, escape(name))
self.legend.show()
def select(self, indices):
keys = QApplication.keyboardModifiers()
indices = set(indices)
if keys & Qt.ControlModifier:
self.selection ^= indices
elif keys & Qt.AltModifier:
self.selection -= indices
elif keys & Qt.ShiftModifier:
self.selection |= indices
else:
self.selection = indices
def reset(self):
self.selection = set()
self.view_box.reset()
self.clear()
self.getAxis('bottom').set_ticks(None)
self.legend.hide()
def select_button_clicked(self):
self.view_box.set_graph_state(SELECT)
self.view_box.setMouseMode(self.view_box.RectMode)
def pan_button_clicked(self):
self.view_box.set_graph_state(PANNING)
self.view_box.setMouseMode(self.view_box.PanMode)
def zoom_button_clicked(self):
self.view_box.set_graph_state(ZOOMING)
self.view_box.setMouseMode(self.view_box.RectMode)
def reset_button_clicked(self):
self.view_box.autoRange()
self.view_box.enableAutoRange()
class ProfileGroup:
def __init__(self, data, indices, color, graph):
self.x_data = np.arange(1, data.X.shape[1] + 1)
self.y_data = data.X
self.indices = indices
self.ids = data.ids
self.color = color
self.graph = graph
self.profiles_added = False
self.sub_profiles_added = False
self.range_added = False
self.mean_added = False
self.error_bar_added = False
self.graph_items = []
self.__mean = nanmean(self.y_data, axis=0)
self.__create_curves()
def __create_curves(self):
self.profiles = self._get_profiles_curve()
self.sub_profiles = self._get_sel_profiles_curve()
self.sel_profiles = self._get_sel_profiles_curve()
self.range = self._get_range_curve()
self.sel_range = self._get_sel_range_curve()
self.mean = self._get_mean_curve()
self.error_bar = self._get_error_bar()
self.graph_items = [
self.mean, self.range, self.sel_range, self.profiles,
self.sub_profiles, self.sel_profiles, self.error_bar
]
def _get_profiles_curve(self):
x, y, con = self.__get_disconnected_curve_data(self.y_data)
color = QColor(self.color)
color.setAlpha(LinePlotStyle.UNSELECTED_LINE_ALPHA)
pen = self.make_pen(color)
return pg.PlotCurveItem(x=x, y=y, connect=con, pen=pen, antialias=True)
def _get_sel_profiles_curve(self):
color = QColor(self.color)
color.setAlpha(LinePlotStyle.SELECTED_LINE_ALPHA)
pen = self.make_pen(color, LinePlotStyle.SELECTED_LINE_WIDTH)
return pg.PlotCurveItem(x=None, y=None, pen=pen, antialias=False)
def _get_range_curve(self):
color = QColor(self.color)
color.setAlpha(LinePlotStyle.RANGE_ALPHA)
bottom, top = nanmin(self.y_data, axis=0), nanmax(self.y_data, axis=0)
return pg.FillBetweenItem(
pg.PlotDataItem(x=self.x_data, y=bottom),
pg.PlotDataItem(x=self.x_data, y=top), brush=color
)
def _get_sel_range_curve(self):
color = QColor(self.color)
color.setAlpha(LinePlotStyle.SELECTED_RANGE_ALPHA)
curve1 = curve2 = pg.PlotDataItem(x=self.x_data, y=self.__mean)
return pg.FillBetweenItem(curve1, curve2, brush=color)
def _get_mean_curve(self):
pen = self.make_pen(self.color.darker(LinePlotStyle.MEAN_DARK_FACTOR),
LinePlotStyle.MEAN_WIDTH)
return pg.PlotCurveItem(x=self.x_data, y=self.__mean,
pen=pen, antialias=True)
def _get_error_bar(self):
std = nanstd(self.y_data, axis=0)
return pg.ErrorBarItem(x=self.x_data, y=self.__mean,
bottom=std, top=std, beam=0.01)
def remove_items(self):
for item in self.graph_items:
self.graph.removeItem(item)
self.graph_items = []
def set_visible_profiles(self, show_profiles=True, show_range=True, **_):
if not self.profiles_added and show_profiles:
self.profiles_added = True
self.graph.addItem(self.profiles)
self.graph.addItem(self.sel_profiles)
if not self.sub_profiles_added and (show_profiles or show_range):
self.sub_profiles_added = True
self.graph.addItem(self.sub_profiles)
self.profiles.setVisible(show_profiles)
self.sel_profiles.setVisible(show_profiles)
self.sub_profiles.setVisible(show_profiles or show_range)
def set_visible_range(self, show_profiles=True, show_range=True, **_):
if not self.range_added and show_range:
self.range_added = True
self.graph.addItem(self.range)
self.graph.addItem(self.sel_range)
if not self.sub_profiles_added and (show_profiles or show_range):
self.sub_profiles_added = True
self.graph.addItem(self.sub_profiles)
self.range.setVisible(show_range)
self.sel_range.setVisible(show_range)
self.sub_profiles.setVisible(show_profiles or show_range)
def set_visible_mean(self, show_mean=True, **_):
if not self.mean_added and show_mean:
self.mean_added = True
self.graph.addItem(self.mean)
self.mean.setVisible(show_mean)
def set_visible_error(self, show_error=True, **_):
if not self.error_bar_added and show_error:
self.error_bar_added = True
self.graph.addItem(self.error_bar)
self.error_bar.setVisible(show_error)
def update_profiles_color(self, selection):
color = QColor(self.color)
alpha = LinePlotStyle.UNSELECTED_LINE_ALPHA if not selection \
else LinePlotStyle.UNSELECTED_LINE_ALPHA_SEL
color.setAlpha(alpha)
x, y = self.profiles.getData()
self.profiles.setData(x=x, y=y, pen=self.make_pen(color))
def update_sel_profiles(self, y_data):
x, y, connect = self.__get_disconnected_curve_data(y_data) \
if y_data is not None else (None, None, None)
self.sel_profiles.setData(x=x, y=y, connect=connect)
def update_sel_profiles_color(self, subset):
color = QColor(Qt.black) if subset else QColor(self.color)
color.setAlpha(LinePlotStyle.SELECTED_LINE_ALPHA)
pen = self.make_pen(color, LinePlotStyle.SELECTED_LINE_WIDTH)
x, y = self.sel_profiles.getData()
self.sel_profiles.setData(x=x, y=y, pen=pen)
def update_sub_profiles(self, y_data):
x, y, connect = self.__get_disconnected_curve_data(y_data) \
if y_data is not None else (None, None, None)
self.sub_profiles.setData(x=x, y=y, connect=connect)
def update_sel_range(self, y_data):
if y_data is None:
curve1 = curve2 = pg.PlotDataItem(x=self.x_data, y=self.__mean)
else:
curve1 = pg.PlotDataItem(x=self.x_data, y=nanmin(y_data, axis=0))
curve2 = pg.PlotDataItem(x=self.x_data, y=nanmax(y_data, axis=0))
self.sel_range.setCurves(curve1, curve2)
@staticmethod
def __get_disconnected_curve_data(y_data):
m, n = y_data.shape
x = np.arange(m * n) % n + 1
y = y_data.A.flatten() if sp.issparse(y_data) else y_data.flatten()
connect = np.ones_like(y, bool)
connect[n - 1:: n] = False
return x, y, connect
@staticmethod
def make_pen(color, width=1):
pen = QPen(color, width)
pen.setCosmetic(True)
return pen
MAX_FEATURES = 200
SEL_MAX_INSTANCES = 10000
class OWLinePlot(OWWidget):
name = "Line Plot"
description = "Visualization of data profiles (e.g., time series)."
icon = "icons/LinePlot.svg"
priority = 180
enable_selection = Signal(bool)
class Inputs:
data = Input("Data", Table, default=True)
data_subset = Input("Data Subset", Table)
class Outputs:
selected_data = Output("Selected Data", Table, default=True)
annotated_data = Output(ANNOTATED_DATA_SIGNAL_NAME, Table)
settingsHandler = DomainContextHandler()
group_var = ContextSetting(None)
show_profiles = Setting(False)
show_range = Setting(True)
show_mean = Setting(True)
show_error = Setting(False)
auto_commit = Setting(True)
selection = Setting(None, schema_only=True)
graph_name = "graph.plotItem"
class Error(OWWidget.Error):
not_enough_attrs = Msg("Need at least one continuous feature.")
no_valid_data = Msg("No plot due to no valid data.")
class Warning(OWWidget.Warning):
no_display_option = Msg("No display option is selected.")
class Information(OWWidget.Information):
hidden_instances = Msg("Instances with unknown values are not shown.")
too_many_features = Msg("Data has too many features. Only first {}"
" are shown.".format(MAX_FEATURES))
def __init__(self, parent=None):
super().__init__(parent)
self.__groups = []
self.data = None
self.valid_data = None
self.subset_data = None
self.subset_indices = None
self.__pending_selection = self.selection
self.graph_variables = []
self.setup_gui()
self.graph.view_box.selection_changed.connect(self.selection_changed)
self.enable_selection.connect(self.graph.view_box.enable_selection)
def setup_gui(self):
self._add_graph()
self._add_controls()
def _add_graph(self):
box = gui.vBox(self.mainArea, True, margin=0)
self.graph = LinePlotGraph(self)
box.layout().addWidget(self.graph)
def _add_controls(self):
infobox = gui.widgetBox(self.controlArea, "Info")
self.infoLabel = gui.widgetLabel(infobox, "No data on input.")
displaybox = gui.widgetBox(self.controlArea, "Display")
gui.checkBox(displaybox, self, "show_profiles", "Lines",
callback=self.__show_profiles_changed,
tooltip="Plot lines")
gui.checkBox(displaybox, self, "show_range", "Range",
callback=self.__show_range_changed,
tooltip="Plot range between 10th and 90th percentile")
gui.checkBox(displaybox, self, "show_mean", "Mean",
callback=self.__show_mean_changed,
tooltip="Plot mean curve")
gui.checkBox(displaybox, self, "show_error", "Error bars",
callback=self.__show_error_changed,
tooltip="Show standard deviation")
self.group_vars = DomainModel(
placeholder="None", separators=False, valid_types=DiscreteVariable)
self.group_view = gui.listView(
self.controlArea, self, "group_var", box="Group by",
model=self.group_vars, callback=self.__group_var_changed,
sizeHint=QSize(30, 100))
self.group_view.setEnabled(False)
plot_gui = OWPlotGUI(self)
plot_gui.box_zoom_select(self.controlArea)
gui.rubber(self.controlArea)
gui.auto_commit(self.controlArea, self, "auto_commit",
"Send Selection", "Send Automatically")
def __show_profiles_changed(self):
self.check_display_options()
self._update_visibility("profiles")
def __show_range_changed(self):
self.check_display_options()
self._update_visibility("range")
def __show_mean_changed(self):
self.check_display_options()
self._update_visibility("mean")
def __show_error_changed(self):
self._update_visibility("error")
def __group_var_changed(self):
if self.data is None or not self.graph_variables:
return
self.plot_groups()
self._update_profiles_color()
self._update_sel_profiles_and_range()
self._update_sel_profiles_color()
self._update_sub_profiles()
@Inputs.data
@check_sql_input
def set_data(self, data):
self.closeContext()
self.data = data
self.clear()
self.check_data()
self.check_display_options()
if self.data is not None:
self.group_vars.set_domain(self.data.domain)
self.group_view.setEnabled(len(self.group_vars) > 1)
self.group_var = self.data.domain.class_var \
if self.data.domain.has_discrete_class else None
self.openContext(data)
self.setup_plot()
self.unconditional_commit()
def check_data(self):
def error(err):
err()
self.data = None
self.clear_messages()
if self.data is not None:
self.infoLabel.setText("%i instances on input\n%i features" % (
len(self.data), len(self.data.domain.attributes)))
self.graph_variables = [var for var in self.data.domain.attributes
if var.is_continuous]
self.valid_data = ~countnans(self.data.X, axis=1).astype(bool)
if len(self.graph_variables) < 1:
error(self.Error.not_enough_attrs)
elif not np.sum(self.valid_data):
error(self.Error.no_valid_data)
else:
if not np.all(self.valid_data):
self.Information.hidden_instances()
if len(self.graph_variables) > MAX_FEATURES:
self.Information.too_many_features()
self.graph_variables = self.graph_variables[:MAX_FEATURES]
def check_display_options(self):
self.Warning.no_display_option.clear()
if self.data is not None:
if not (self.show_profiles or self.show_range or self.show_mean):
self.Warning.no_display_option()
enable = (self.show_profiles or self.show_range) and \
len(self.data[self.valid_data]) < SEL_MAX_INSTANCES
self.enable_selection.emit(enable)
@Inputs.data_subset
@check_sql_input
def set_subset_data(self, subset):
self.subset_data = subset
def handleNewSignals(self):
self.set_subset_ids()
if self.data is not None:
self._update_profiles_color()
self._update_sel_profiles_color()
self._update_sub_profiles()
def set_subset_ids(self):
sub_ids = {e.id for e in self.subset_data} \
if self.subset_data is not None else {}
self.subset_indices = None
if self.data is not None and sub_ids:
self.subset_indices = [x.id for x in self.data[self.valid_data]
if x.id in sub_ids]
def setup_plot(self):
if self.data is None:
return
ticks = [a.name for a in self.graph_variables]
self.graph.getAxis("bottom").set_ticks(ticks)
self.plot_groups()
self.apply_selection()
self.graph.view_box.enableAutoRange()
self.graph.view_box.updateAutoRange()
def plot_groups(self):
self._remove_groups()
data = self.data[self.valid_data, self.graph_variables]
if self.group_var is None:
self._plot_group(data, np.where(self.valid_data)[0])
else:
class_col_data, _ = self.data.get_column_view(self.group_var)
for index in range(len(self.group_var.values)):
mask = np.logical_and(class_col_data == index, self.valid_data)
indices = np.flatnonzero(mask)
if not len(indices):
continue
group_data = self.data[indices, self.graph_variables]
self._plot_group(group_data, indices, index)
self.graph.update_legend(self.group_var)
self.graph.view_box.add_profiles(data.X)
def _remove_groups(self):
for group in self.__groups:
group.remove_items()
self.graph.view_box.remove_profiles()
self.__groups = []
def _plot_group(self, data, indices, index=None):
color = self.__get_group_color(index)
group = ProfileGroup(data, indices, color, self.graph)
kwargs = self.__get_visibility_flags()
group.set_visible_error(**kwargs)
group.set_visible_mean(**kwargs)
group.set_visible_range(**kwargs)
group.set_visible_profiles(**kwargs)
self.__groups.append(group)
def __get_group_color(self, index):
if self.group_var is not None:
return QColor(*self.group_var.colors[index])
return QColor(LinePlotStyle.DEFAULT_COLOR)
def __get_visibility_flags(self):
return {"show_profiles": self.show_profiles,
"show_range": self.show_range,
"show_mean": self.show_mean,
"show_error": self.show_error}
def _update_profiles_color(self):
# color alpha depends on subset and selection; with selection or
# subset profiles color has more opacity
if not self.show_profiles:
return
for group in self.__groups:
has_sel = bool(self.subset_indices) or bool(self.selection)
group.update_profiles_color(has_sel)
def _update_sel_profiles_and_range(self):
# mark selected instances and selected range
if not (self.show_profiles or self.show_range):
return
for group in self.__groups:
inds = [i for i in group.indices if self.__in(i, self.selection)]
table = self.data[inds, self.graph_variables].X if inds else None
if self.show_profiles:
group.update_sel_profiles(table)
if self.show_range:
group.update_sel_range(table)
def _update_sel_profiles_color(self):
# color depends on subset; when subset is present,
# selected profiles are black
if not self.selection or not self.show_profiles:
return
for group in self.__groups:
group.update_sel_profiles_color(bool(self.subset_indices))
def _update_sub_profiles(self):
# mark subset instances
if not (self.show_profiles or self.show_range):
return
for group in self.__groups:
inds = [i for i, _id in zip(group.indices, group.ids)
if self.__in(_id, self.subset_indices)]
table = self.data[inds, self.graph_variables].X if inds else None
group.update_sub_profiles(table)
def _update_visibility(self, obj_name):
if not len(self.__groups):
return
self._update_profiles_color()
self._update_sel_profiles_and_range()
self._update_sel_profiles_color()
kwargs = self.__get_visibility_flags()
for group in self.__groups:
getattr(group, "set_visible_{}".format(obj_name))(**kwargs)
self.graph.view_box.updateAutoRange()
def apply_selection(self):
if self.data is not None and self.__pending_selection is not None:
sel = [i for i in self.__pending_selection if i < len(self.data)]
mask = np.zeros(len(self.data), dtype=bool)
mask[sel] = True
mask = mask[self.valid_data]
self.selection_changed(mask)
self.__pending_selection = None
def selection_changed(self, mask):
if self.data is None:
return
# need indices for self.data: mask refers to self.data[self.valid_data]
indices = np.arange(len(self.data))[self.valid_data][mask]
self.graph.select(indices)
old = self.selection
self.selection = None if self.data and isinstance(self.data, SqlTable)\
else list(self.graph.selection)
if not old and self.selection or old and not self.selection:
self._update_profiles_color()
self._update_sel_profiles_and_range()
self._update_sel_profiles_color()
self.commit()
def commit(self):
selected = self.data[self.selection] \
if self.data is not None and bool(self.selection) else None
annotated = create_annotated_table(self.data, self.selection)
self.Outputs.selected_data.send(selected)
self.Outputs.annotated_data.send(annotated)
def send_report(self):
if self.data is None:
return
caption = report.render_items_vert((("Group by", self.group_var),))
self.report_plot()
if caption:
self.report_caption(caption)
def sizeHint(self):
return QSize(1132, 708)
def clear(self):
self.valid_data = None
self.selection = None
self.__groups = []
self.graph_variables = []
self.graph.reset()
self.infoLabel.setText("No data on input.")
self.group_vars.set_domain(None)
self.group_view.setEnabled(False)
@staticmethod
def __in(obj, collection):
return collection is not None and obj in collection
if __name__ == "__main__":
data = Table("brown-selected")
WidgetPreview(OWLinePlot).run(set_data=data, set_subset_data=data[:30])