Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embed shiny app into a jupyter notebook

Tags:

r

jupyter

shiny

Is there anyway to embed a shiny app into a jupyter notebook? After uploadind the ui.R and server.R files to the same folder where the notebook is, I have tried this code:

%R library(shiny)
%R runApp()

The app executes correctly but it opens a new window. I want to embed the app in the notebook.

Thanks a lot!!

like image 279
John Avatar asked Nov 04 '15 09:11

John


1 Answers

Shiny and Jupyter people are thinking about it (June 2016).

like image 159
dfrankow Avatar answered Oct 15 '22 11:10

dfrankow