Guest User

Untitled

a guest
Jan 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. library(shiny)
  2.  
  3. ui <- fluidPage(
  4. box(
  5. tags$img(height = 100, width = 100,src = "Rlogo.png"),
  6. tags$img(height = 100, width = 100,src = "E:/myApp/www/Rlogo.png")
  7. )
  8. )
  9.  
  10. server <- function(input, output, session) {
  11.  
  12. }
  13.  
  14. shinyApp(ui, server)
Add Comment
Please, Sign In to add comment