无法看到闪亮的图像

时间:2018-06-14 11:42:19

标签: r shiny src

这是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 个答案:

答案 0 :(得分: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"))
)