码迷,mamicode.com
首页 > 其他好文 > 详细

用PyQt5来即时显示pandas Dataframe的数据,附qdarkstyle黑夜主题样式(美美哒的黑夜主题)

时间:2020-01-27 15:51:46      阅读:407      评论:0      收藏:0      [点我收藏+]

标签:head   exe   class   ret   ica   span   import   color   sys   

import sys
from qdarkstyle import load_stylesheet_pyqt5
from PyQt5.QtWidgets import QApplication, QTableView
from PyQt5.QtCore import QAbstractTableModel, Qt


class QtTable(QAbstractTableModel):
    def __init__(self, data):
        QAbstractTableModel.__init__(self)
        self._data = data

    def rowCount(self, parent=None):
        return self._data.shape[0]

    def columnCount(self, parent=None):
        return self._data.shape[1]

    def data(self, index, role=Qt.DisplayRole):
        if index.isValid():
            if role == Qt.DisplayRole:
                return str(self._data.iloc[index.row(), index.column()])
        return None

    def headerData(self, col, orientation, role):
        if orientation == Qt.Horizontal and role == Qt.DisplayRole:
            return self._data.columns[col]
        return None


def render(df):
    app = QApplication(sys.argv)
    model = QtTable(df)
    view = QTableView()
    app.setStyleSheet(load_stylesheet_pyqt5())
    fnt = view.font()
    fnt.setPointSize(9)
    view.setFont(fnt)
    view.setModel(model)
    view.setWindowTitle(viewer)
    view.resize(1080, 400)
    view.show()
    sys.exit(app.exec_())

如果想用PyQt5来即时显示pandas Dataframe的数据,直接call render这个function即可。

render(df)

完成!

用PyQt5来即时显示pandas Dataframe的数据,附qdarkstyle黑夜主题样式(美美哒的黑夜主题)

标签:head   exe   class   ret   ica   span   import   color   sys   

原文地址:https://www.cnblogs.com/chenkuang/p/12235899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!