-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pandas support #131
Comments
This is only part of what you want, but:
As for a "widget to display a Pandas Dataframe" you'd need to write that part. (there's probably something helpful in the documentation about how to write nodes). |
@ddevz thanks for the reply. I made some custom pandas nodes which are a bit more dynamic than the autogenerated ones would be, but I'm glad to hear autogeneration is an option at all. There isn't much in the documentation about writing custom widgets, at least to the level that I want to. I have a general idea, I think I'll need to use PyQT widgets in widgets.py, but I'm not sure how to set the height of the widget and the node dynamically since dataframes tend to be long and wide. |
The guide describes how to link a widget in your node, which is simply a QWidget. For actually building your custom widgets please refer to the Qt For Python documentation. edit: there probably exist good examples online for Qt widgets displaying pandas dataframes |
I decided to make a simple node that does |
I'm looking for a widget to display a Pandas Dataframe, or at least the preview of one. Any ideas for how to do this? In general, support for Pandas would be really helpful as it is one of the Python behemoths of data processing and would work really well with Ryven
The text was updated successfully, but these errors were encountered: