Hi! I'm trying to insert a pdf into a shiny app in a tab. However, instead of displaying the pdf in the tab it opens it in the Adobe Acrobat Reader as soon as I run the app. The pdf I'm trying to display is in the www folder (not inside any other folder) I'm wondering if anybody knows how to fix this problem. Below I attach a simple example.
library(shiny)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(),
mainPanel(
br(),
tabPanel(title = "Referencias", value = 4,
tags$iframe(style="height:400px; width:100%; scrolling=yes",
src="fitdistrplus.pdf"))
)
)
)
server <- function(input, output, session) {
}
shinyApp(ui = ui, server = server
)