Is there a way to run an R Dash app in a hosted JupyterLab environment like a Python Dash app that uses jupyter-dash?
I have a Dash app that runs in R Studio but I would like to run it in our hosted JupyterLab environment where the output for the Dash app would be “inline” or “jupyterlab”.
Thanks in advance for any info!
the jupyter-dash [sample code] (jupyter-dash/getting_started.ipynb at master · plotly/jupyter-dash · GitHub) displays the output correctly.
`app = JupyterDash(name)
Create server variable with Flask server object for use with gunicorn
server = app.server
[…]
app.run_server(mode=“jupyterlab”)
`