Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
"Min": df.min(numeric_only=True),
"Max": df.max(numeric_only=True),
}
)
w = DataFrameViewer(stats_df, editable=self.editable)
w.setAutoFillBackground(True)
return w
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
from pandasgui.datasets import iris, flights, multi, pokemon
# Create and show widget
dfe = DataFrameExplorer(flights)
dfe.show()
sys.exit(app.exec_())