adamerose / PandasGUI

A GUI for Pandas DataFrames
MIT No Attribution
3.17k stars 229 forks source link

Excuse me, how can I embed pandasgui into pyqt5? #169

Closed CatNofishing closed 3 years ago

CatNofishing commented 3 years ago

This is a great data visualization library, I want to embed it in the pyqt5 program

adamerose commented 3 years ago

Whenever you create the GUI like gui = show(df), your gui object is a QWidget so you can just embed it like any other PyQt5 widget.

CatNofishing commented 3 years ago

Thanks,awesome work!

CatNofishing commented 3 years ago

@adamerose I noticed that the window cannot be reduced to the minimum. I use pandasgui.setMinimumSize(0,0) to lift the window size limit, but it doesn’t work,how to Shrink the window to the smallest ,and any other api to get pandasgui widget and load df replace pandasgui.show(df).😁