Ich habe versucht, die Bildausgabe Hyperlink auf eine Website zu machen, aber ich habe Schwierigkeiten mit den anderen FragenHerstellung eines Bildes Hyperlink in R Shiny Header
svg with clickable links in shiny - not clickable
auf Stack-Überlauf durchgelesen zu habenhttp://www.invisiblecompany.com/shiny%20parts/archives/2004/11/clickable-logo.php
http://www.leahkalamakis.com/add-an-image-to-your-sidebar-make-it-clickable/
die Tags funktionieren nicht
se rver.r
library(shiny)
library(png)
server <- shinyServer(function(input, output) {
output$image1 <- renderImage({
width<- "100%"
height<- "100%"
list(src = "www/logo.png",
contentType = "image/png",
width = width,
height = height,
)
}, deleteFile = FALSE)
output$text1 <- renderText({ "please help make the image hyperlinked" })
})
ui.r
library(shiny)
ui <- shinyUI(pageWithSidebar(
titlePanel(imageOutput("image1")),
sidebarPanel(
helpText( a("Click Here for the Source Code on Github!", href="https://github.com/Bohdan-Khomtchouk/Microscope",target="_blank"))
),
mainPanel(
tabsetPanel(
tabPanel("Instructions",textOutput("text1"))
))
))
können Sie die logo.png ersetzen mit dem, was Sie wollen, ich glaube, der Hyper-Link in der Liste im Server geht.
Wenn es nichts dynamisch über das Bild, benutze einfach die HTML-Builder-Funktionen: 'a (img (src =" logo.png "), href =" https://github.com/Bohdan-Khomtchouk/Microscope ")' – alistaire