Working in Knowledge Science, it may be onerous to share insights from complicated datasets utilizing solely static figures. All of the aspects that describe the form and that means of fascinating knowledge usually are not all the time captured in a handful of pre-generated figures. Whereas we now have highly effective applied sciences out there for presenting interactive figures — the place a viewer can rotate, filter, zoom, and usually discover complicated knowledge — they all the time include tradeoffs.
Right here I current my expertise utilizing a lately launched Python library — marimo — which opens up thrilling new alternatives for publishing interactive visualizations throughout the complete area of knowledge science.
Interactive Knowledge Visualization
The tradeoffs to contemplate when choosing an strategy for presenting knowledge visualizations might be damaged into three classes:
- Capabilities — what visualizations and interactivity am I in a position to current to the person?
- Publication Price — what are the assets wanted for displaying this visualization to customers (e.g. working servers, internet hosting web sites)?
- Ease of Use – how a lot of a brand new skillset / codebase do I have to be taught upfront?
JavaScript is the muse of moveable interactivity. Each person has an online browser put in on their laptop and there are various completely different frameworks out there for displaying any diploma of interactivity or visualization you may think (for instance, this gallery of wonderful issues individuals have made with three.js). Because the software is working on the person’s laptop, no expensive servers are wanted. Nonetheless, a major downside for the information science neighborhood is ease of use, as JS doesn’t have most of the high-level (i.e. easy-to-use) libraries that knowledge scientists use for knowledge manipulation, plotting, and interactivity.
Python offers a helpful level of comparability. Due to its regularly rising recognition, some have known as this the “Period of Python”. For knowledge scientists particularly, Python stands alongside R as one of many foundational languages for shortly and successfully wielding complicated knowledge. Whereas Python could also be simpler to make use of than Javascript, there are fewer choices for presenting interactive visualizations. Some well-liked initiatives offering interactivity and visualization have been Flask, Sprint, and Streamlit (additionally value mentioning — bokeh, HoloViews, altair, and plotly). The largest tradeoff for utilizing Python has been the associated fee for publishing – delivering the software to customers. In the identical method that shinyapps require a working laptop to serve up the visualization, these Python-based frameworks have completely been server-based. That is in no way prohibitive for authors with a funds to spend, however it does restrict the variety of customers who can make the most of a specific undertaking.
Pyodide is an intriguing center floor — Python code working instantly within the net browser utilizing WebAssembly (WASM). There are useful resource limitations (only one thread and 2GB reminiscence) that make this impractical for doing the heavy lifting of knowledge science. Nonetheless, this may be greater than ample for constructing visualizations and updating based mostly on person enter. As a result of it runs within the browser, no servers are required for internet hosting. Instruments that use Pyodide as a basis are fascinating to discover as a result of they provide knowledge scientists a chance to jot down Python code which runs instantly on customers’ computer systems with out their having to put in or run something outdoors of the online browser.
As an apart, I’ve been beforehand in one undertaking that has tried this strategy: stlite, an in-browser implementation of Streamlit that allows you to deploy these versatile and highly effective apps to a broad vary of customers. Nonetheless, a core limitation is that Streamlit itself is distinct from stlite (the port of Streamlit to WASM), which signifies that not all options are supported and that development of the undertaking relies on two separate teams working alongside appropriate traces.
Introducing: Marimo
This brings us to Marimo.
The first public bulletins of marimo have been in January 2024, so the undertaking may be very new, and it has a novel mixture of options:
- The interface resembles a Jupyter pocket book, which shall be acquainted to customers.
- Execution of cells is reactive, in order that updating one cell will rerun all cells which rely upon its output.
- Consumer enter might be captured with a versatile set of UI elements.
- Notebooks might be shortly transformed into apps, hiding the code and displaying solely the enter/output components.
- Apps might be run regionally or transformed into static webpages utilizing WASM/Pyodide.
marimo balances the tradeoffs of expertise in a method that’s properly suited to the talent set of the everyday knowledge scientists:
- Capabilities — person enter and visible show options are quite in depth, supporting person enter through Altair and Plotly plots.
- Publication Price — deploying as static webpages is mainly free — no servers required
- Ease of Use — for customers conversant in Python notebooks, marimo will really feel very acquainted and be straightforward to select up.
Publishing Marimo Apps on the Internet
One of the best place to begin with marimo is by studying their in depth documentation.
As a easy instance of the kind of show that may be helpful in knowledge science, consisting of explanatory textual content interspersed with interactive shows, I’ve created a barebones GitHub repository. Strive it out your self right here.
![](https://github.com/FredHutch/marimo-publication/raw/main/public/screenshot.gif)
Utilizing just a bit little bit of code, customers can:
- Connect supply datasets
- Generate visualizations with versatile interactivity
- Write narrative textual content describing their findings
- Publish to the online without cost (i.e. utilizing GitHub Pages)
For extra particulars, learn their documentation on net publishing and template repository for deploying to GitHub Pages.
Public App / Non-public Knowledge
This new expertise presents an thrilling new alternative for collaboration — publish the app publicly to the world, however customers can solely see particular datasets that they’ve permission to entry.
Fairly than constructing a devoted knowledge backend for each app, person knowledge might be saved in a generic backend which might be securely authenticated and accessed utilizing a Python shopper library — all contained throughout the person’s net browser. For instance, the person is given an OAuth login hyperlink that may authenticate them with the backend and permit the app to quickly entry enter knowledge.
As a proof of idea, I constructed a easy visualization app which connects to the Cirro knowledge platform, which is used at my establishment to handle scientific knowledge. Full disclosure: I used to be a part of the group that constructed this platform earlier than it spun out as an unbiased firm. On this method customers can:
- Load the general public visualization app — hosted on GitHub Pages
- Join securely to their non-public knowledge retailer
- Load the suitable dataset for show
- Share a hyperlink which is able to direct approved collaborators to the identical knowledge
Strive it out your self right here.
![](https://github.com/FredHutch/differential-expression-viewer/raw/main/assets/screenshot2.gif)
As a knowledge scientist, this strategy of publishing free and open-source visualization apps which can be utilized to work together with non-public datasets is extraordinarily thrilling. Constructing and publishing a brand new app can take hours and days as a substitute of weeks and years, letting researchers shortly share their insights with collaborators after which publish them to the broader world.