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!!