Reputation: 19
I'm coding a recursive feature selection in Python, where I'm selecting most significant predictor variables based on some criterion. I'm making a loop and displaying features over each iteration, and a table of statistics summary of every regression. I would like to display update the table values every iteration in a graphical interface, does anyone know what package should I use?
Thanks
Upvotes: 0
Views: 125
Reputation: 31
In terms of graphical interface to use, I would definitely recommend using PYSimpleGUI (https://pypi.org/project/PySimpleGUI/) especially since you want to update values per iteration.
Its an easy to use, flexible GUI, and PySimpleGUI is released on PyPI as 5 distinct packages.
Here's a link to the Table Element with all its methods etc. (https://pysimplegui.readthedocs.io/en/latest/call%20reference/#table-element)
Upvotes: 2