-
Notifications
You must be signed in to change notification settings - Fork 793
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
RFC: Add official Jupyter widget with AnyWidget #3106
Comments
I’m super supportive. One thing that’s missing from the proposal to me is support for sending data separately from the spec (e.g., pandas dataframes). Ideally we go through some good serialization. I’d also be open to have this happen in the ipyvega repo (the Vega pip package). That would keep Altair focused on being the API only and the widget could work without Altair as well. |
Yeah, I was picturing sending the tables as Arrow and then deserializing with the Arrow JS library, then splicing the Arrow tables back into the spec before calling vega-embed.
Thanks, that does sounds like a good idea |
Absolutely, I think it's a great idea for the reasons you outlined in your proposal 🚀 Thank you for putting it together!
Including it in the ipyvega repo sounds good to me as well for the outlined reasons. Altair can focus on being the API and the widget can be used independently of Altair.
Sounds like a very useful addition in a second step so +1 for this as well. |
This sounds interesting and powerful although I'll admit that I don't fully grasp all the ins and outs of it.
Does this mean that if I create a dashboard using Panel or Dash, I would be able to use AltairWidget/ipyvega to create widgets that play nicely with the rest of those dashboard components? Or would I only be able to use this new widget package in a JupyterLab-compatible environment like those that you listed above (+maybe dashboarding solutions building on JupyterLab, like Voila etc?).
This sounds attractive and could maybe follow a similar approach as we are taking with vl-convert and vegafusion that if the AltairWidget/ipyvega package is installed Altair will use it by default but Altair still works perfectly fine without it.
Does ipyvega work well with Altair 5 or would there be additional updates needed there since the package is not required for JupyterLab and we added the Altair 5 compatibility directly into the JupyterLab repo? I haven't really used ipyvega at all so I don't know if it would introduced any additional useful features (e.g. the performance imporovements here vega/ipyvega#346), or if there is a lot of functionality that it is not needed for Altair when working in more modern environment than the classic notebooks and it would maybe be more agile to make what is proposed here into a new package? FWIW, there was an attempt at a previous altair-widget package here https://github.com/altair-viz/altair_widgets |
Thanks @jonmmease for starting this discussion! Thanks @manzt for developing anywidget! I saw the poc-example in this jupyter blog post, where in the same blog post is also nicely discussed why this Python <> JavaScript interchange is (was?) very difficult. I'm not yet completely convinced why this widget is better served from within ipyvega. In my understanding this proposal would also mean an almost complete redo of ipyvega (?) including both I've to admit, I cannot oversee to what extend the intended code-changes can explode, but if the code changes are a fraction of the current implementation of the |
Thanks for the feedback everyone! Sounds like the next step is for me to actually play with this a bit more and demonstrate how much code is actually involved. I've started extending the poc-example from the blog post to support multiple selections, and support updating arbitrary signals/datasets from Python, and it seems to be going smoothly. I'll keep you all posted on my progress. Another nice benefit of this approach is that if we use bundling then we'll have a way to display charts in widget-compatible environments that works offline (unlike the "default" renderer) and where we control the versions of Vega and Vega-Lite (unlike the "mimetype") renderer. |
I made a quick PR in #3108 that demonstrates how we could add a simple |
This would only work in environments that explicitly support Jupyter widgets. So not in Dash. Panel has some support through ipywidgets_bokeh, but there are a fair number of open issues there (e.g. VegaFusionWidget doesn't work yet), so I'm not sure if this will work. Solara seems to support widgets well, so I expect that would be an option for dashboards. |
Done by #3119 |
Background
I had a great chat with @manzt at SciPy 2023 about his anywidget project. This approach to building Jupyter widgets is a dramatic simplification compared to what I've done previously (For the plotly
FigureWidget
and theVegaFusionWidget
).In the announcement blog post, there is actually a proof-of-concept example of creating a Vega-Lite widget that syncs selections back to Python. It's defined by a single Python class, with inline JavaScript:
When loading from a CDN, there's no bundling step at all. For offline use, there are relatively straightforward instructions on bundling.
anywidget is pretty widely compatible with (just about?) every environment that supports Jupyter widgets including the classic notebook, JupyterLab, Binder, Visual Studio Code, and Colab.
Proposal
The anywidget approach looks so straightforward and concise that I'd like to propose we use it to build an official
AltairWidget
(name TBD, could also beVegaWidget
) with the following features:_store
dataset.(1) is an end user API to make it possible to use Altair charts in larger dashboards. And by including the
*_store
dataset in the selection info, I think there's a path to using the selection as an optional filter inchart.transformed_data
(cc @joelostblom, as this is something we talked about at some point).(2) Is an optimization that should significantly improve render time for large, unaggregated charts (or any large chart when the new vegafusion data transformer is not enabled) by avoiding the usual row-wise JSON serialization / deserialization
(3) and (4) are low-level APIs that a future version of VegaFusion could plug into. This would allow me to deprecate
VegaFusionWidget
(and the entirevegafusion-jupyter
package for that matter). We could support something likeAltairWidget(chart, vegafusion=True)
to optionally enable the currentVegaFusionWidget
functionality. And there are probably other uses for these capabilities as well.It works differently, but I think this approach would also largely remove the need for altair_data_server within widget-compatible environments. I think it would also replace the need for the ipyvega
VegaWidget
Questions
altair
package itself, or in a separatealtair-widget
package (name TBD)? I'm on the fence here, and my preference would likely depend on how much code it ends up being, and on whether it could be added to the main repo without introducing any additional required dependencies.Chart
in anAltairWidget
, could we also have a renderer that would automatically do this? This way you would get the performance benefit without API changes (for the common case where you don't need access to the selection info from Python).cc @domoritz, as this is basically the proposal we talked about a few months back. It just feels like a much smaller lift with anywidget.
The text was updated successfully, but these errors were encountered: