Back
You can simply try the following code in R programming:
library(shiny)ui <- fluidPage( img(src="sample.gif", align = "left",height='250px',width='500px'))server <- function(input, output, session) {}shinyApp(ui, server)
library(shiny)
ui <- fluidPage(
img(src="sample.gif", align = "left",height='250px',width='500px')
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Note: You have to make sure that the app.R has a folder called www where the gif is saved.
31k questions
32.8k answers
501 comments
693 users