用PyQt5来即时显示pandas Dataframe的数据,附qdarkstyle黑夜主题样式(美美哒的黑夜主题)
Posted chenkuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PyQt5来即时显示pandas Dataframe的数据,附qdarkstyle黑夜主题样式(美美哒的黑夜主题)相关的知识,希望对你有一定的参考价值。
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黑夜主题样式(美美哒的黑夜主题)的主要内容,如果未能解决你的问题,请参考以下文章
2020-03-12 PYQT5界面使用QtableView展示Pandas.DataFrame
2020-03-12 PYQT5界面使用QtableView展示Pandas.DataFrame