我正在使用QTableView在PyQt5 GUI内创建一个表。我从熊猫数据框中有35行和5列。滚动和排序表格非常慢(几秒钟)。
我已经在寻找解决方案,但是大多数人在填充表格时遇到了麻烦。有人建议使用numpy数组,但我看不到性能有任何提高。
这是我的代码:
def create_table(dataframe):
table = QTableView()
tm = TableModel(dataframe)
table.setModel(tm)
table.setSelectionBehavior(QAbstractItemView.SelectRows)
table.resizeColumnsToContents()
table.resizeRowsToContents()
table.setSortingEnabled(True)
return table
class TableModel(QtCore.QAbstractTableModel):
def __init__(self, data, parent=None):
QtCore.QAbstractTableModel.__init__(self, parent)
self._data = data
def rowCount(self, parent=None):
return len(self._data.values)
def columnCount(self, parent=None):
return self._data.columns.size
def data(self, index, role=QtCore.Qt.DisplayRole):
if index.isValid():
if role == QtCore.Qt.DisplayRole:
return str(self._data.values[index.row()][index.column()])
return None
def headerData(self, rowcol, orientation, role):
if orientation == QtCore.Qt.Horizontal and role == QtCore.Qt.DisplayRole:
return self._data.columns[rowcol]
if orientation == QtCore.Qt.Vertical and role == QtCore.Qt.DisplayRole:
return self._data.index[rowcol]
return None
def flags(self, index):
flags = super(self.__class__, self).flags(index)
flags |= QtCore.Qt.ItemIsEditable
flags |= QtCore.Qt.ItemIsSelectable
flags |= QtCore.Qt.ItemIsEnabled
flags |= QtCore.Qt.ItemIsDragEnabled
flags |= QtCore.Qt.ItemIsDropEnabled
return flags
def sort(self, Ncol, order):
"""Sort table by given column number.
"""
try:
self.layoutAboutToBeChanged.emit()
self._data = self._data.sort_values(self._data.columns[Ncol], ascending=not order)
self.layoutChanged.emit()
except Exception as e:
print(e)
table = create_table(dataframe)
我在Slow scrolling with QTableView on other comp处发现了一个问题,用户遇到类似的问题,他/她发现“ QTableView正在刷新窗口的每个滚动/外观上的项目,这显然是问题的根源。”但是我不知道我的桌子和那个桌子是否有相同的问题。
如何使表格的滚动和排序速度更快?问题的根源是什么?
答案 0 :(得分:2)
问题出在rowCount和数据方法中,因为您没有使用最好的函数。如果使用rowCount,则在使用值时,您将创建消耗时间的新数据,在这种情况下,请使用索引。和数据一样,您必须使用iloc():
def rowCount(self, parent=None):
return len(self._data.index)
# ...
def data(self, index, role=QtCore.Qt.DisplayRole):
if index.isValid():
if role == QtCore.Qt.DisplayRole:
return str(self._data.iloc[index.row(), index.column()])
return None