Extending Shiny by enhancing user experience with shinyLP
😀 + 💻
Jasmine Dumas | @jasdumas | jasdumas.github.io
January 12, 2017
ttbbeer and shinyLPshiny apps in 2014shiny web framework package makes it easier to create R-powered web appsshiny add-on packages that increase usabilityshinyjs: lets you perform common useful JavaScript operations in Shiny apps that will greatly improve your apps without having to know any JavaScript.shinydashboard: provides a theme on top of Shiny, making it easy to create attractive dashboards.shinythemes: easily alter the overall appearance of your Shiny application.shinyBS: Adds additional Twitter Bootstrap components to Shiny.
shiny examples from the internet!
shinyLPjumbotron <- function(header , content, button = TRUE, ...){
button_label = c(...)
if (button){
HTML(paste0("<div class='jumbotron'>
<h1> ", header, "</h1>
<p>", content ,"</p>",
"<p><a class='btn btn-primary btn-lg' button id='tabBut'>", button_label, "</a></p>
</div>") )
} else {
HTML(paste0("<div class='jumbotron'>
<h1> ", header, "</h1>
<p>", content ,"</p>",
"</div>") )
}
}shinyLP…shinyLP example is a-peeling…