source: sasview/src/sas/qtgui/Utilities/GridPanel.py @ be7c981

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since be7c981 was c4c4957, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 5 years ago

Batch results tabs now have meaningful names SASVIEW-1204

  • Property mode set to 100644
File size: 19.1 KB
Line 
1import os
2import sys
3import time
4import logging
5import webbrowser
6
7from PyQt5 import QtCore, QtWidgets, QtGui
8
9import sas.qtgui.Utilities.GuiUtils as GuiUtils
10from sas.qtgui.Plotting.PlotterData import Data1D
11from sas.qtgui.Utilities.UI.GridPanelUI import Ui_GridPanelUI
12
13
14class BatchOutputPanel(QtWidgets.QMainWindow, Ui_GridPanelUI):
15    """
16    Class for stateless grid-like printout of model parameters for mutiple models
17    """
18    ERROR_COLUMN_CAPTION = " (Err)"
19    IS_WIN = (sys.platform == 'win32')
20    windowClosedSignal = QtCore.pyqtSignal()
21    def __init__(self, parent = None, output_data=None):
22
23        super(BatchOutputPanel, self).__init__(parent._parent)
24        self.setupUi(self)
25
26        self.parent = parent
27        if hasattr(self.parent, "communicate"):
28            self.communicate = parent.communicate
29
30        self.addToolbarActions()
31
32        # file name for the dataset
33        self.grid_filename = ""
34
35        self.has_data = False if output_data is None else True
36        # Tab numbering
37        self.tab_number = 1
38
39        # System dependent menu items
40        if not self.IS_WIN:
41            self.actionOpen_with_Excel.setVisible(False)
42
43        # list of QTableWidgets, indexed by tab number
44        self.tables = []
45        self.tables.append(self.tblParams)
46
47        # context menu on the table
48        self.tblParams.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
49        self.tblParams.customContextMenuRequested.connect(self.showContextMenu)
50
51        # Command buttons
52        self.cmdHelp.clicked.connect(self.onHelp)
53        self.cmdPlot.clicked.connect(self.onPlot)
54
55        # Fill in the table from input data
56        self.setupTable(widget=self.tblParams, data=output_data)
57        if output_data is not None:
58            # Set a table tooltip describing the model
59            model_name = output_data[0][0].model.id
60            self.tabWidget.setTabToolTip(0, model_name)
61
62    def closeEvent(self, event):
63        """
64        Overwrite QDialog close method to allow for custom widget close
65        """
66        # notify the parent so it hides this window
67        self.windowClosedSignal.emit()
68        event.ignore()
69
70    def addToolbarActions(self):
71        """
72        Assing actions and callbacks to the File menu items
73        """
74        self.actionOpen.triggered.connect(self.actionLoadData)
75        self.actionOpen_with_Excel.triggered.connect(self.actionSendToExcel)
76        self.actionSave.triggered.connect(self.actionSaveFile)
77
78    def actionLoadData(self):
79        """
80        Open file load dialog and load a .csv file
81        """
82        datafile = QtWidgets.QFileDialog.getOpenFileName(
83            self, "Choose a file with results", "", "CSV files (*.csv)", None,
84            QtWidgets.QFileDialog.DontUseNativeDialog)[0]
85
86        if not datafile:
87            logging.info("No data file chosen.")
88            return
89
90        with open(datafile, 'r') as csv_file:
91            lines = csv_file.readlines()
92
93        self.setupTableFromCSV(lines)
94        self.has_data = True
95
96    def currentTable(self):
97        """
98        Returns the currently shown QTabWidget
99        """
100        return self.tables[self.tabWidget.currentIndex()]
101
102    def showContextMenu(self, position):
103        """
104        Show context specific menu in the tab table widget.
105        """
106        menu = QtWidgets.QMenu()
107        rows = [s.row() for s in self.currentTable().selectionModel().selectedRows()]
108        num_rows = len(rows)
109        if num_rows <= 0:
110            return
111        # Find out which items got selected and in which row
112        # Select for fitting
113
114        self.actionPlotResults = QtWidgets.QAction(self)
115        self.actionPlotResults.setObjectName("actionPlot")
116        self.actionPlotResults.setText(QtCore.QCoreApplication.translate("self", "Plot selected fits."))
117
118        menu.addAction(self.actionPlotResults)
119
120        # Define the callbacks
121        self.actionPlotResults.triggered.connect(self.onPlot)
122        try:
123            menu.exec_(self.currentTable().viewport().mapToGlobal(position))
124        except AttributeError as ex:
125            logging.error("Error generating context menu: %s" % ex)
126        return
127
128    def addTabPage(self, name=None):
129        """
130        Add new tab page with QTableWidget
131        """
132        layout = QtWidgets.QVBoxLayout()
133        tab_widget = QtWidgets.QTableWidget(parent=self)
134        # Same behaviour as the original tblParams
135        tab_widget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
136        tab_widget.setAlternatingRowColors(True)
137        tab_widget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
138        tab_widget.setLayout(layout)
139        # Simple naming here.
140        # One would think naming the tab with current model name would be good.
141        # However, some models have LONG names, which doesn't look well on the tab bar.
142        self.tab_number += 1
143        if name is not None:
144            tab_name = name
145        else:
146            tab_name = "Tab " + str(self.tab_number)
147        # each table needs separate slots.
148        tab_widget.customContextMenuRequested.connect(self.showContextMenu)
149        self.tables.append(tab_widget)
150        self.tabWidget.addTab(tab_widget, tab_name)
151        # Make the new tab active
152        self.tabWidget.setCurrentIndex(self.tab_number-1)
153
154    def addFitResults(self, results):
155        """
156        Create a new tab with batch fitting results
157        """
158        # pull out page name from results
159        page_name = None
160        if len(results)>=2:
161            if isinstance(results[-1], str):
162                page_name = results[-1]
163                _ = results.pop(-1)
164
165        if self.has_data:
166            self.addTabPage(name=page_name)
167        else:
168            self.tabWidget.setTabText(0, page_name)
169        # Update the new widget
170        # Fill in the table from input data in the last/newest page
171        assert(self.tables)
172        self.setupTable(widget=self.tables[-1], data=results)
173        self.has_data = True
174
175        # Set a table tooltip describing the model
176        model_name = results[0][0].model.id
177        self.tabWidget.setTabToolTip(self.tabWidget.count()-1, model_name)
178
179
180    @classmethod
181    def onHelp(cls):
182        """
183        Open a local url in the default browser
184        """
185        location = GuiUtils.HELP_DIRECTORY_LOCATION
186        url = "/user/qtgui/Perspectives/Fitting/fitting_help.html#batch-fit-mode"
187        try:
188            webbrowser.open('file://' + os.path.realpath(location+url))
189        except webbrowser.Error as ex:
190            logging.warning("Cannot display help. %s" % ex)
191
192    def onPlot(self):
193        """
194        Plot selected fits by sending signal to the parent
195        """
196        rows = [s.row() for s in self.currentTable().selectionModel().selectedRows()]
197        if not rows:
198            msg = "Nothing to plot!"
199            self.parent.communicate.statusBarUpdateSignal.emit(msg)
200            return
201        data = self.dataFromTable(self.currentTable())
202        # data['Data'] -> ['filename1', 'filename2', ...]
203        # look for the 'Data' column and extract the filename
204        for row in rows:
205            try:
206                filename = data['Data'][row]
207                # emit a signal so the plots are being shown
208                self.communicate.plotFromFilenameSignal.emit(filename)
209            except (IndexError, AttributeError):
210                # data messed up.
211                return
212
213    @classmethod
214    def dataFromTable(cls, table):
215        """
216        Creates a dictionary {<parameter>:[list of values]} from the parameter table
217        """
218        assert(isinstance(table, QtWidgets.QTableWidget))
219        params = {}
220        for column in range(table.columnCount()):
221            value = [table.item(row, column).data(0) for row in range(table.rowCount())]
222            key = table.horizontalHeaderItem(column).data(0)
223            params[key] = value
224        return params
225
226    def actionSendToExcel(self):
227        """
228        Generates a .csv file and opens the default CSV reader
229        """
230        if not self.grid_filename:
231            import tempfile
232            tmpfile = tempfile.NamedTemporaryFile(delete=False, mode="w+", suffix=".csv")
233            self.grid_filename = tmpfile.name
234            data = self.dataFromTable(self.currentTable())
235            t = time.localtime(time.time())
236            time_str = time.strftime("%b %d %H:%M of %Y", t)
237            details = "File Generated by SasView "
238            details += "on %s.\n" % time_str
239            self.writeBatchToFile(data=data, tmpfile=tmpfile, details=details)
240            tmpfile.close()
241
242        try:
243            from win32com.client import Dispatch
244            excel_app = Dispatch('Excel.Application')
245            excel_app.Workbooks.Open(self.grid_filename)
246            excel_app.Visible = 1
247        except Exception as ex:
248            msg = "Error occured when calling Excel.\n"
249            msg += ex
250            self.parent.communicate.statusBarUpdateSignal.emit(msg)
251
252    def actionSaveFile(self):
253        """
254        Generate a .csv file and dump it do disk
255        """
256        t = time.localtime(time.time())
257        time_str = time.strftime("%b %d %H %M of %Y", t)
258        default_name = "Batch_Fitting_"+time_str+".csv"
259
260        wildcard = "CSV files (*.csv);;"
261        kwargs = {
262            'caption'   : 'Save As',
263            'directory' : default_name,
264            'filter'    : wildcard,
265            'parent'    : None,
266        }
267        # Query user for filename.
268        filename_tuple = QtWidgets.QFileDialog.getSaveFileName(**kwargs)
269        filename = filename_tuple[0]
270
271        # User cancelled.
272        if not filename:
273            return
274        data = self.dataFromTable(self.currentTable())
275        details = "File generated by SasView\n"
276        with open(filename, 'w') as csv_file:
277            self.writeBatchToFile(data=data, tmpfile=csv_file, details=details)
278
279    def setupTableFromCSV(self, csv_data):
280        """
281        Create tablewidget items and show them, based on params
282        """
283        # Is this an empty grid?
284        if self.has_data:
285            # Add a new page
286            self.addTabPage()
287            # Access the newly created QTableWidget
288            current_page = self.tables[-1]
289        else:
290            current_page = self.tblParams
291        # headers
292        param_list = csv_data[1].rstrip().split(',')
293        # need to remove the 2 header rows to get the total data row number
294        rows = len(csv_data) -2
295        assert(rows > -1)
296        columns = len(param_list)
297        current_page.setColumnCount(columns)
298        current_page.setRowCount(rows)
299
300        for i, param in enumerate(param_list):
301            current_page.setHorizontalHeaderItem(i, QtWidgets.QTableWidgetItem(param))
302
303        # first - Chi2 and data filename
304        for i_row, row in enumerate(csv_data[2:]):
305            for i_col, col in enumerate(row.rstrip().split(',')):
306                current_page.setItem(i_row, i_col, QtWidgets.QTableWidgetItem(col))
307
308        current_page.resizeColumnsToContents()
309
310    def setupTable(self, widget=None, data=None):
311        """
312        Create tablewidget items and show them, based on params
313        """
314        # quietly leave is nothing to show
315        if data is None or widget is None:
316            return
317
318        # Figure out the headers
319        model = data[0][0]
320
321        disperse_params = list(model.model.dispersion.keys())
322        magnetic_params = model.model.magnetic_params
323        optimized_params = model.param_list
324        # Create the main parameter list
325        param_list = [m for m in model.model.params.keys() if (m not in model.model.magnetic_params and ".width" not in m)]
326
327        # add fitted polydisp parameters
328        param_list += [m+".width" for m in disperse_params if m+".width" in optimized_params]
329
330        # add fitted magnetic params
331        param_list += [m for m in magnetic_params if m in optimized_params]
332
333        # Check if 2D model. If not, remove theta/phi
334        if isinstance(model.data.sas_data, Data1D):
335            if 'theta' in param_list:
336                param_list.remove('theta')
337            if 'phi' in param_list:
338                param_list.remove('phi')
339
340        rows = len(data)
341        columns = len(param_list)
342
343        widget.setColumnCount(columns+2) # add 2 initial columns defined below
344        widget.setRowCount(rows)
345
346        # Insert two additional columns
347        param_list.insert(0, "Data")
348        param_list.insert(0, "Chi2")
349        for i, param in enumerate(param_list):
350            widget.setHorizontalHeaderItem(i, QtWidgets.QTableWidgetItem(param))
351
352        # dictionary of parameter errors for post-processing
353        # [param_name] = [param_column_nr, error_for_row_1, error_for_row_2,...]
354        error_columns = {}
355        # first - Chi2 and data filename
356        for i_row, row in enumerate(data):
357            # each row corresponds to a single fit
358            chi2 = row[0].fitness
359            filename = ""
360            if hasattr(row[0].data, "sas_data"):
361                filename = row[0].data.sas_data.filename
362            widget.setItem(i_row, 0, QtWidgets.QTableWidgetItem(GuiUtils.formatNumber(chi2, high=True)))
363            widget.setItem(i_row, 1, QtWidgets.QTableWidgetItem(str(filename)))
364            # Now, all the parameters
365            for i_col, param in enumerate(param_list[2:]):
366                if param in row[0].param_list:
367                    # parameter is on the to-optimize list - get the optimized value
368                    par_value = row[0].pvec[row[0].param_list.index(param)]
369                    # parse out errors and store them for later use
370                    err_value = row[0].stderr[row[0].param_list.index(param)]
371                    if param in error_columns:
372                        error_columns[param].append(err_value)
373                    else:
374                        error_columns[param] = [i_col, err_value]
375                else:
376                    # parameter was not varied
377                    par_value = row[0].model.params[param]
378
379                widget.setItem(i_row, i_col+2, QtWidgets.QTableWidgetItem(
380                    GuiUtils.formatNumber(par_value, high=True)))
381
382        # Add errors
383        error_list = list(error_columns.keys())
384        for error_param in error_list[::-1]: # must be reverse to keep column indices
385            # the offset for the err column: +2 from the first two extra columns, +1 to append this column
386            error_column = error_columns[error_param][0]+3
387            error_values = error_columns[error_param][1:]
388            widget.insertColumn(error_column)
389
390            column_name = error_param + self.ERROR_COLUMN_CAPTION
391            widget.setHorizontalHeaderItem(error_column, QtWidgets.QTableWidgetItem(column_name))
392
393            for i_row, error in enumerate(error_values):
394                item = QtWidgets.QTableWidgetItem(GuiUtils.formatNumber(error, high=True))
395                # Fancy, italic font for errors
396                font = QtGui.QFont()
397                font.setItalic(True)
398                item.setFont(font)
399                widget.setItem(i_row, error_column, item)
400
401        # resize content
402        widget.resizeColumnsToContents()
403
404    @classmethod
405    def writeBatchToFile(cls, data, tmpfile, details=""):
406        """
407        Helper to write result from batch into cvs file
408        """
409        name = tmpfile.name
410        if data is None or name is None or name.strip() == "":
411            return
412        _, ext = os.path.splitext(name)
413        separator = "\t"
414        if ext.lower() == ".csv":
415            separator = ","
416        tmpfile.write(details)
417        for col_name in data.keys():
418            tmpfile.write(col_name)
419            tmpfile.write(separator)
420        tmpfile.write('\n')
421        max_list = [len(value) for value in data.values()]
422        if len(max_list) == 0:
423            return
424        max_index = max(max_list)
425        index = 0
426        while index < max_index:
427            for value_list in data.values():
428                if index < len(value_list):
429                    tmpfile.write(str(value_list[index]))
430                    tmpfile.write(separator)
431                else:
432                    tmpfile.write('')
433                    tmpfile.write(separator)
434            tmpfile.write('\n')
435            index += 1
436
437
438class BatchInversionOutputPanel(BatchOutputPanel):
439    """
440        Class for stateless grid-like printout of P(r) parameters for any number
441        of data sets
442    """
443    def __init__(self, parent = None, output_data=None):
444
445        super(BatchInversionOutputPanel, self).__init__(parent._parent, output_data)
446        _translate = QtCore.QCoreApplication.translate
447        self.setWindowTitle(_translate("GridPanelUI", "Batch P(r) Results"))
448
449    def setupTable(self, widget=None,  data=None):
450        """
451        Create tablewidget items and show them, based on params
452        """
453        # headers
454        param_list = ['Filename', 'Rg [Å]', 'Chi^2/dof', 'I(Q=0)', 'Oscillations',
455                      'Background [Å^-1]', 'P+ Fraction', 'P+1-theta Fraction',
456                      'Calc. Time [sec]']
457
458        if data is None:
459            return
460        keys = data.keys()
461        rows = len(keys)
462        columns = len(param_list)
463        self.tblParams.setColumnCount(columns)
464        self.tblParams.setRowCount(rows)
465
466        for i, param in enumerate(param_list):
467            self.tblParams.setHorizontalHeaderItem(i, QtWidgets.QTableWidgetItem(param))
468
469        # first - Chi2 and data filename
470        for i_row, (filename, pr) in enumerate(data.items()):
471            out = pr.out
472            cov = pr.cov
473            if out is None:
474                logging.warning("P(r) for {} did not converge.".format(filename))
475                continue
476            self.tblParams.setItem(i_row, 0, QtWidgets.QTableWidgetItem(
477                "{}".format(filename)))
478            self.tblParams.setItem(i_row, 1, QtWidgets.QTableWidgetItem(
479                "{:.3g}".format(pr.rg(out))))
480            self.tblParams.setItem(i_row, 2, QtWidgets.QTableWidgetItem(
481                "{:.3g}".format(pr.chi2[0])))
482            self.tblParams.setItem(i_row, 3, QtWidgets.QTableWidgetItem(
483                "{:.3g}".format(pr.iq0(out))))
484            self.tblParams.setItem(i_row, 4, QtWidgets.QTableWidgetItem(
485                "{:.3g}".format(pr.oscillations(out))))
486            self.tblParams.setItem(i_row, 5, QtWidgets.QTableWidgetItem(
487                "{:.3g}".format(pr.background)))
488            self.tblParams.setItem(i_row, 6, QtWidgets.QTableWidgetItem(
489                "{:.3g}".format(pr.get_positive(out))))
490            self.tblParams.setItem(i_row, 7, QtWidgets.QTableWidgetItem(
491                "{:.3g}".format(pr.get_pos_err(out, cov))))
492            self.tblParams.setItem(i_row, 8, QtWidgets.QTableWidgetItem(
493                "{:.2g}".format(pr.elapsed)))
494
495        self.tblParams.resizeColumnsToContents()
496
497    @classmethod
498    def onHelp(cls):
499        """
500        Open a local url in the default browser
501        """
502        location = GuiUtils.HELP_DIRECTORY_LOCATION
503        url = "/user/qtgui/Perspectives/Fitting/fitting_help.html#batch-fit-mode"
504        try:
505            webbrowser.open('file://' + os.path.realpath(location + url))
506        except webbrowser.Error as ex:
507            logging.warning("Cannot display help. %s" % ex)
508
509    def closeEvent(self, event):
510        """Tell the parent window the window closed"""
511        self.parent.batchResultsWindow = None
512        event.accept()
Note: See TracBrowser for help on using the repository browser.