#!/usr/bin/env python # coding: utf-8 # # Appmode in Jupyter # # This page demonstrates how to generate online "apps" with a Jupyter Notebook interface. With the `appmode` plugin, we can create interactive experiences without requiring coding or running a specific cell. # # Markdown cells will be retained, and all code cells will be run, then hidden. The outputs of each cell will be displayed as well. # In[1]: import ipyvolume # In[ ]: ds = ipyvolume.datasets.aquariusA2.fetch() ipyvolume.quickvolshow(ds.data, lighting=True) # In[ ]: