我有一个pandas数据框,我想在QtableView中显示它并使其可编辑我已经创建了下面的模型,但是由于某些原因,输出在每个字段中都有复选框。我怎样才能摆脱他们?
前景是这样的:
python - 可编辑QTableView中的Pandas df:删除复选框-LMLPHP
这是一个模型,用于将pandas数据帧显示在qtavleview中并使其可编辑(我使用pyside)

class PandasModelEditable(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 or role == QtCore.Qt.EditRole:
                return unicode(self._data.iloc[index.row(), index.column()])
        return unicode()

    def headerData(self, section, orientation, role=QtCore.Qt.DisplayRole):
        if role != QtCore.Qt.DisplayRole:
            return None
        if orientation == QtCore.Qt.Horizontal:
            try:
                return '%s' % unicode(self._data.columns.tolist()[section])
            except (IndexError,):
                return unicode()
        elif orientation == QtCore.Qt.Vertical:
            try:
                return '%s' % unicode(self._data.index.tolist()[section])
            except (IndexError,):
                return unicode()

    def flags(self, index):
        return QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsSelectable | \
               QtCore.Qt.ItemIsEditable

    def setData(self, index, value, role=QtCore.Qt.EditRole):
        if index.isValid():
            self._data.iloc[index.row(), index.column()] = value
            if self.data(index, QtCore.Qt.DisplayRole) == value:
                self.dataChanged.emit(index, index)
                return True
        return unicode()

删除QtCore.Qt.ItemIsSelectable并不能解决问题,因为它似乎没有任何效果。

最佳答案

datasetaData返回错误的默认值。前者应该返回None(这样您就可以删除最后一行),而后者应该返回False

关于python - 可编辑QTableView中的Pandas df:删除复选框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41232314/

10-09 17:18