forked from cxinping/PyQt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpandas_pyqt.py
64 lines (47 loc) · 1.51 KB
/
pandas_pyqt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
"""
Module implementing MainWindow.
"""
from PyQt5.QtCore import pyqtSlot
from PyQt5.QtWidgets import QMainWindow, QApplication
from Ui_pandas_pyqt import Ui_MainWindow
from qtpandas.models.DataFrameModel import DataFrameModel
import pandas as pd
class MainWindow(QMainWindow, Ui_MainWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent=None):
"""
Constructor
@param parent reference to the parent widget
@type QWidget
"""
super(MainWindow, self).__init__(parent)
self.setupUi(self)
'''初始化pandasqt'''
widget = self.pandastablewidget
widget.resize(600, 500) # 如果对部件尺寸大小不满意可以在这里设置
self.model = DataFrameModel() # 设置新的模型
widget.setViewModel(self.model)
self.df = pd.read_excel(r'./data/fund_data.xlsx',encoding='gbk')
self.df_original = self.df.copy() # 备份原始数据
self.model.setDataFrame(self.df)
@pyqtSlot()
def on_pushButton_clicked(self):
"""
初始化pandas
"""
self.model.setDataFrame(self.df_original)
@pyqtSlot()
def on_pushButton_2_clicked(self):
"""
保存数据
"""
self.df.to_excel(r'./data/fund_data_new.xlsx')
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
ui = MainWindow()
ui.show()
sys.exit(app.exec_())