Description Usage Arguments Author(s) Examples
Build an UIkit Shiny app.
1 |
... |
any element. |
title |
App title. |
navbar |
Navbar content, if any. |
David Granjon, dgranjon@ymail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | if(interactive()){
library(shiny)
library(shinyUIkit)
shiny::shinyApp(
ui = UIkitPage(
title = "My UIkit application",
sliderInput("obs", "Number of observations:",
min = 0, max = 1000, value = 500
),
plotOutput("distPlot")
),
server = function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.