shiny
Starting Shiny app after password input
EDIT 2019: We can now use the package shinymanager to do this: the invactivity script is to timeout the login page after 2 mins of inactivity so you dont waste resources: library(shiny) library(shinymanager) inactivity <- “function idleTimer() { var t = setTimeout(logout, 120000); window.onmousemove = resetTimer; // catches mouse movements window.onmousedown = resetTimer; // catches … Read more
Scale and size of plot in RStudio shiny
Not sure if this gives you fully what you desire, but here’s what worked for me. The options specified in Server.R did take effect. (I just plotted two graphs of different sizes each.) I also took @Manetheran’s suggestion and made cex and cex.axis into parameters. They seem to be working. Below is the code for … Read more
How to organize large Shiny apps?
After addition of modules to R shiny. Managing of complex structures in shiny applications has become a lot easier. Detailed description of shiny modules:Here Advantages of using modules: Once created, they are easily reused ID collisions is easier to avoid Code organization based on inputs and output of modules In tab based shiny app, one … Read more
R + Shiny which hammer? straight Shiny, flexdashboard or shinydashboard? [closed]
There’s one nuance that needs to be made. Interactivity does not necessarily require a server behind it running code. Interactivity can be provided using embedded JavaScript, which would execute at the client-side (like plotly, highcharts, leaflet etc). So if we don’t use the word “interactivity”, but describe the interactivity explicitly, then your options become: Shiny: … Read more