无法看到闪亮的图像[重复]

Posted

技术标签:

【中文标题】无法看到闪亮的图像[重复]【英文标题】:Not able to see image in shiny [duplicate] 【发布时间】:2018-11-24 04:31:03 【问题描述】:

这是http://shiny.rstudio.com/tutorial/written-tutorial/lesson2/ 中的一个基本练习题,答案似乎也符合某个点,但是当应用程序运行时,即使在工作目录中也不会显示照片。有人可以帮忙吗。

library(shiny)

# Define UI
ui <- fluidPage(
titlePanel(strong("My shiny app"), windowTitle = "My first"),

sidebarLayout(sidebarPanel(

   h1(strong("Installation")),
   p("Shiny is available on CRAN, so you can install it in the usual way from your R console:"),
   p(code('install.package("shiny")')),
   br(),
   br(),
   br(),
   br(),
   img(src = "rstudio.png", height = 70, width = 200)
                                 )
   mainPanel("main panel"))
    )

# Define server logic
server <- function(input, output) 


    

# Run the application 
shinyApp(ui = ui, server = server)

答案上显示的答案可以在图像下方显示答案的帮助下看到。 图片路径:-http://shiny.rstudio.com/tutorial/written-tutorial/lesson2/images/my-shiny-app.png

我还在学习,所以整个代码还没有写完,我也没有单独的 www/ 目录,因为这只是为了学习过程。不像其他类似问题那样创建徽标或其他内容。这只是图像添加点。

【问题讨论】:

【参考方案1】:

您的代码有错误。 添加文件的完整路径。有时 Rstudio-viewer 不显示图像。但是您始终可以在浏览器中打开应用程序。

ui <- fluidPage(
  titlePanel(strong("My shiny app"), windowTitle = "My first"),

  sidebarLayout(sidebarPanel(

    h1(strong("Installation")),
    p("Shiny is available on CRAN, so you can install it in the usual way from your R console:"),
    p(code('install.package("shiny")')),
    br(),
    br(),
    br(),
    br(),
    img(src = "http://shiny.rstudio.com/tutorial/written-tutorial/lesson2/images/my-shiny-app.png", height = 70, width = 200)
  ),
  mainPanel("main panel"))
)

【讨论】:

但是如果我成为服务器呢。然后我不能将我的图像链接到另一个站点,因为它会增加流量,最后如果他们删除我将没有其他来源。有没有其他办法 问题是我在我的 r 工作目录中添加了照片,但它必须添加到闪亮目录中

以上是关于无法看到闪亮的图像[重复]的主要内容,如果未能解决你的问题,请参考以下文章

表名而不是正在显示的表R闪亮[重复]

R:无法保存情节[重复]

您如何将图像标签的源设置为二进制图像数据,我所看到的没有啥对我有用[重复]

多个背景图像 - 无法将图像带到前面[重复]

无法在表格标题中居中文本和图像[重复]

无法更改导航栏后退按钮的背景图像[重复]