Panel: A high-level app and dashboarding solution for the PyData ecosystem.

Panel: A high-level app and dashboarding solution for the PyData ecosystem.

Philipp RudigerBlockedUnblockFollowFollowingJun 3Panel is a new open-source Python library that lets you create custom interactive web apps and dashboards by connecting user-defined widgets to plots, images, tables, or text.

It is the culmination of our multi-year effort to connect data scientists with tools for deploying the output of their analysis and models with internal or external consumers of the analysis, without having to learn completely different technology stacks or getting into the weeds of web development.

Panel can already be installed using both conda install -c pyviz panel (to get set up with Anaconda click here) and pip install panel.

Like all other PyViz projects it is entirely open-source and BSD-3 licensed.

To get started, visit the website here and find the Panel code on GitHub.

The main aim behind Panel was to make it as easy as possible to wrap the outputs of existing tools in the PyData ecosystem as a control panel, app, or dashboard, ensuring that users can seamlessly work with the analysis and visualization tools they are already familiar with.

Secondly, Panel aims to make it trivial to go from prototyping an app to deploying it internally within an organization, or sharing it publicly with the entire internet.

Fast iterationIn our consulting work at Anaconda Inc.

we have repeatedly seen the pain involved in turning some analysis code into insights that can be easily shared with decision makers within an organization or the general public.

Because the technologies involved often required distinct skill sets, different teams may be involved in prototyping, developing and deploying an app to be used by non-technical people.

This introduces a huge amount of friction as minor tweaks need to be communicated between teams, increasing the length of the iteration cycle exponentially.

Panel aims to address this by providing simple APIs to connect the outputs of an analysis using the PyData stack with widgets and other interactive components, to make insights accessible to a wide audience.

Most importantly, Panel apps can easily be built entirely within a Jupyter notebook, where a lot of modern data science happens.

After an iterative process to slowly polish and improve the app or dashboard, it can then be deployed in a scalable way on a Bokeh-based server instance simply by annotating the objects to be deployed with a call to the .

servable()method.

The process of developing an app with Panel can therefore generally be broken down into a small number of steps:Perform some analysis in a notebook, using whatever tools are convenient and effective for youWrap the output of your analysis as a Panel “pane”, allowing it to be used together with other Panel componentsConnect the individual analysis outputs with widgets and other interactive components to form a full “panel”Display these components in the notebook and iterate until you are happy with the resultApply styling using CSS or built-in Bokeh styling options, if you wishTest how the app or dashboard looks as a standalone web server by adding .

show()Make the app or dashboard deployable by annotating the components to be deployed with .

servable()Deploy the app locally or on a public server using panel serve nb.

ipynbThis quick back-and-forth iteration between prototyping in a notebook and then deploying the final product is an incredibly convenient and powerful way to create a compelling and useful application, easily alternating between exploration and delivery of your insights to your audience.

Thanks to the power of the underlying Bokeh layout engine and server, all the complex layout and styling options translate seamlessly between the different environments so that you can focus on your data and your audience.

Flexible APIsTo demonstrate the power of Panel, let us look at one of the simplest possible apps, a stock explorer app implemented in just a few lines of code (view the source notebook here):A simple Panel app implemented in just a few lines of Python code.

As you can observe in the code, Panel provides a number of different abstraction layers to write this kind of app.

To get a quick overview, let us look at the three most common APIs for building apps outlined in the Panel user guide.

InteractThe simplest approach to building an app is the interactfunction familiar to users of ipywidgets, which automatically creates a set of widgets and some visual output from a supplied function.

As a simple example, the following pattern will generate a dropdown menu and display it next to a plot:Because Panel is compositional, we can index into the layout returned by the function, making it easy to write basic apps and lay them out precisely how you want.

ReactiveThe interact approach builds on the idea of reactive programming, but has additional magic that automatically creates widgets for you.

The more explicit approach provided by Panel is to create each widget yourself, use the pn.

depends decorator to declare how those widgets map to function inputs, and then manually compose the widgets and outputs:Thanks to the reactive programming model that underlies Panel, the plot will update whenever any of the declared dependencies of the function change.

CallbacksTo achieve full control over updates to different components, it is also possible to define specific callbacks when a parameter on a Panel component changes.

These callbacks can in turn modify other components, such as the Panel Row, Column, and Tabslayouts which act like ordinary lists that Python programmers are familiar with:Users can choose between these three different approaches to ensure they have just the right level of control needed for a particular use case, while being able to build dashboards of any complexity.

Compatibility with the Python ecosystemCompared to other Python dashboarding frameworks, Panel is novel in that it supports nearly all common Python plotting libraries, and automatically chooses the appropriate representation for basic Python types and other objects in the Python ecosystem.

A straightforward example is a Pandas dataframe, which will automatically be given the rich HTML representation users will be familiar with when working inside a notebook environment.

In the previous example we rendered the plot using hvPlot (and Bokeh), but the same example works just as well with matplotlib, altair or Plotly.

To demonstrate this let’s look at an example showing four plots of the Gapminder data implemented using each of these libraries, displayed in a single dashboard:Gapminder data visualized using hvPlot (Bokeh), altair (Vega), Matplotlib and Plotly in one dashboard (Click here to try out the deployed app).

Dynamic dashboardsAnother important design goal for Panel was the ability to build dynamic dashboards where components can easily be added, removed, or updated.

This makes it possible to build even the most complex dashboards, including multi-stage processing pipelines.

In the example below, we build an object recognition and classification tool from a number of independent stages, which are connected into a single pipeline (Try it yourself here):A classifier pipeline which allows 1) capturing images from a webcam and applying object detection to the images, 2) selecting and modifying the bounding boxes and 3) classifying the contents of the selected region using Google’s Vision API (To try it yourself here).

The ability to dynamically update and replace individual components — or the entire content of the app — opens up the flexibility to build everything from dynamic UIs to entire multi-stage, data processing pipelines.

Broad and expanding library of componentsPanel ships with a wide array of components, providing a large set of widgets, and a number of powerful layout components.

Most importantly Panel includes a collection of ”pane” types that provide a visible representation of some underlying object, e.

g.

a plot, image or dataframe.

The reference gallery provides a visual index of all the components shipped with Panel.

Because Panel is built on the technology underlying Bokeh, it is straightforward to extend it with arbitrary custom models implemented in JavaScript.

It is even simpler to implement a new Pane class that provides a visual representation for any Python object not currently handled by Panel.

In this way, Panel can be easily extended to visualize objects of almost any type, and provide useful representations for objects anyone uses in their day-to-day work.

Layouts and stylingPanel exposes the incredibly powerful layout engine built into the Bokeh library, and also provides the ability to style different components directly, using Bokeh themes or, when more control is required, using CSS.

This makes it possible to build dashboards that resize reactively to the current size of the browser window, or to extensively customize the visual appearance.

As an example, take a look at the Datashader dashboard below with a responsively resizing plot and custom dark-theme styling:Lastly, Panel also provides a convenient way to embed multiple Panel components in a custom Jinja2 template providing full flexibility of the layout and the overall styling of the resulting HTML document.

DeploymentWhen designing Panel, it was very important to us to make the deployment story straightforward.

Thanks to Bokeh Server, large parts of this problem were already solved, providing us with Websocket communication with support for binary transfer, as well as streaming and patching data.

We were therefore able to focus on making it quick to iterate between Jupyter notebook and deployed server contexts, allowing users to denote any Panel object in a notebook with .

serveable().

This indicates that the object can be deployed separately (as an app), while also letting it display itself in the notebook, without requiring any code changes.

Over the coming weeks, we will also add detailed guides to explain the Python-server deployment procedure on different platforms, including AWS, Google Cloud, Heroku, and Anaconda Enterprise.

In many cases, Panel objects can also be exported to static, standalone HTML/JavaScript files that no longer need a Python server, either by linking widgets to display properties using JS, or by sampling the output of the state space of a set of widgets, capturing the possible results in the file so that it can be distributed on websites or in emails without a running Python process.

ArchitecturePanel is built on top of two main libraries:Bokeh provides the model-view-controller framework on which Panel is built, along with many of the core components such as the widgets and layout engineParam provides a framework for reactive parameters which are used to define all Panel components.

The choice to build an API on top of Bokeh instead of simply extending it was driven by a number of core requirements.

One of the most important was the ability to transition seamlessly between notebook and deployed server contexts, and doing so efficiently and in a scalable way.

Another was the flexibility afforded by being able to dynamically generate a Bokeh representation for each view of a Panel object, encouraging reuse and composability of components.

A third reason was to make it clear that Panel supports any viewable Python object, including plots from dozens of different libraries, not just Bokeh plots (Panel uses Bokeh internals and technology, but in no way assumes that you will use it with Bokeh plots).

Most importantly, however, we wanted to design an API that provides a high degree of both flexibility and simplicity.

Many of the most common operations for displaying, saving, and serving a dashboard are exposed directly on Panel objects and uniformly across them, making it simpler to work with them.

Additionally, updating and even dynamically adding/removing/replacing the individual components of a dashboard are as easy as manipulating a list or dictionary in Python.

Of course, Panel should not be seen to be in competition with Bokeh; it simply provides higher-level abstractions on top of Bokeh.

If needed, Bokeh components can easily be used from within Panel, and Panel components can easily be converted into Bokeh models which can be embedded in a larger Bokeh application.

Comparison to other dashboarding and widget librariesPanel is a very new library in this space but it is heavily inspired by existing concepts and technologies that have in many cases been around for decades.

The three main inspirations for Panel were R’s Shiny library, Jupyter’s ipywidgets library, and Plotly’s Dash and we owe all three libraries/ecosystems a ton of gratitude for pioneering various approaches, APIs and concepts for building web apps without diving deep into web development.

ShinyFor anyone who performs analysis in the R programming language, Shiny provides an incredibly powerful and well polished framework for building web applications.

It sets an incredibly high bar, from which Panel has taken large amounts of inspiration.

In particular, the reactive patterns in Panel are closely modeled on Shiny, and Panel hopes to provide a similarly easy entrypoint for developing web applications in the Python ecosystem.

Despite the similarities, Panel is not merely a Shiny clone for Python.

In addition to the different constraints imposed by a different language, Panel takes a much more explicit approach toward the UI layout, which is usually separated into a separate file from the business logic in Shiny.

Jupyter/ipywidgetsThe Jupyter ecosystem has led to an explosion in the ability to share and disseminate the results of analysis and been a major driver in pushing Python as the most important programming language in scientific analysis, data science, and machine learning.

Within the Jupyter ecosystem, the ipywidgets library has provided the foundation for building interactive components and embedding them in a notebook.

The community that has developed around this ecosystem has been a major inspiration and many core ideas in Panel are built on concepts popularized by these libraries, including the ability of objects to display themselves with rich representations, easily defining links between components in JS code, and Panel’s `interact` API.

The main difference between Panel and ipywidgets is that the Panel architecture is not closely coupled to the IPython kernel that runs interactive computations in Jupyter.

Although Panel fully supports operation in Jupyter notebooks, it is based on a generalized Python/JS communication method that is also fully supported on standalone non-Jupyter servers, making Panel apps work equally well inside and outside of Jupyter contextsDashLike Panel, Plotly’s Dash library allows building very complex and highly polished applications straight from Python.

Dash is also built on a reactive programming model that (along with Shiny) was a big inspiration for some of the features in Panel.

Panel and Dash are quite different in other ways, though.

Dash is (by design) focused specifically on support for Plotly plots, while Panel is agnostic about what objects are being displayed, and is designed to support whatever visualization or analysis tools are most appropriate for your workflows.

Dash also typically requires much more detailed knowledge of low-level web development, while Panel allows users to simply drop in their components, building a usable dashboard in just a few lines of Pythonic code.

Open source license & CommunityPanel is BSD licensed and therefore free to use and modify by anyone and everyone.

We built Panel to make our consulting work easier and make the individuals in those organization more power, but developing something among a small group of developers only goes so far.

We believe everyone benefits when communities join their efforts to build tools together.

So if you are interested in contributing to Panel or even just have suggestions for features, fixes and improvements join us on GitHub.

Thanks for checking out Panel!.We will be giving a talk and tutorial about it at SciPy 2019 in July and are actively working on building further materials, including more demos, tutorials, and examples in the coming weeks and months!AcknowledgementsMany thanks to Anaconda Inc.

for supporting this work and the U.

S.

Army Corps of Engineers, which contributed to the development of the project in the course fulfillment of a work contract.

Further resourcesLinksOur documentation is hosted at https://panel.

pyviz.

orgThe main development repository for Panel is on GitHubJoin us on Twitter @PyViz_orgCheck out the Python Data Visualization eBookFind a collection of demos and examples on GitHubCome see our talk and tutorial at SciPy 2019Join us on the Quansight Open Source Directions Podcast on September 6thTalksEasy Dashboards for Any Visualization in AE5, with PanelRapid Prototyping and Deployment Using the PyViz Stack and Anaconda EnterpriseVisualizing & Analyzing Earth Science Data Using PyViz & PyData.. More details

Leave a Reply