#image #shiny #rstudio #png
#изображение #блестящий #rstudio #png
Вопрос:
- изображения отображаются некорректно (отображаются пустые изображения) в R shiny, выполняются как внутренние, так и внешние (app.R)
-
подобные вопросы, опубликованные в прошлом на этом сайте, не дают адекватного ответа: решение запуска приложения через app.R не решает проблему для меня, изображение по-прежнему не отображается
-
в коде: изображение добавляется на главную панель, как из документов, так и из Интернета (преобразование изображений в веб-ссылку).
пример изображения:https://ibb.co/Bt6v6W9
- Я попытался включить изображение как через документы (локальный рабочий каталог), так и путем преобразования изображения в веб-ссылку.
как выглядит результат:https://cdn1.imggmi.com/uploads/2019/4/24/d65ae8a21decc6adb1d14db9a3e9bf75-full.png
У кого-нибудь есть идея для решения? Как уже упоминалось, запуск приложения через app.R не работает, вывод остается прежним.
library(shiny)
library(png)
# See above for the definitions of ui and server
library(shiny)
library(png)
# Define UI for app that draws a histogram ----
ui <- fluidPage(
# App title ----
titlePanel("Hello Shiny!"),
# Sidebar layout with input and output definitions ----
sidebarLayout(
# Sidebar panel for inputs ----
sidebarPanel(
# Input: Slider for the number of bins ----
sliderInput(inputId = "bins",
label = "Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Main panel for displaying outputs ----
mainPanel(
# Output: Histogram ----
plotOutput(outputId = "distPlot"),
img(src='DataVIS1.png', align = "right",height=168,width=70)
##output: png image
)
)
)
server <- function(input, output) {
# Histogram of the Old Faithful Geyser Data ----
# with requested number of bins
# This expression that generates a histogram is wrapped in a call
# to renderPlot to indicate that:
#
# 1. It is "reactive" and therefore should be automatically
# re-executed when inputs (input$bins) change
# 2. Its output type is a plot
output$distPlot <- renderPlot({
x <- faithful$waiting
bins <- seq(min(x), max(x), length.out = input$bins 1)
hist(x, breaks = bins, col = "#75AADB", border = "white",
xlab = "Waiting time to next eruption (in mins)",
main = "Histogram of waiting times")
})
}
shinyApp(ui = ui, server = server
)
Комментарии:
1. вы поместили изображение в папку «www»?
Ответ №1:
Вы должны запустить код, который создает изображение на стороне сервера, инкапсулировать его в названную вами функцию renderPlot({}), затем вывести вывод сразу после вывода «distPlot». Я не смог заставить ваш код img (src = …) работать, поэтому я использовал растровый график, который функционально одинаков для этой цели. Уменьшенный пример выглядит следующим образом:
library(shiny)
library(png)
ui <- fluidPage(
mainPanel(
plotOutput(outputId = "png")
)
)
server <- function(input, output) {
output$png <- renderPlot({
pic = readPNG('path/to/image.png')
plot.new()
grid::grid.raster(pic)
})
}
shinyApp(ui = ui, server = server)
Включение этого в ваш код дает:
library(shiny)
library(png)
# See above for the definitions of ui and server
library(shiny)
library(png)
# Define UI for app that draws a histogram ----
ui <- fluidPage(
# App title ----
titlePanel("Hello Shiny!"),
# Sidebar layout with input and output definitions ----
sidebarLayout(
# Sidebar panel for inputs ----
sidebarPanel(
# Input: Slider for the number of bins ----
sliderInput(inputId = "bins",
label = "Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Main panel for displaying outputs ----
mainPanel(
# Output: Histogram ----
plotOutput(outputId = "distPlot"),
###Changed code here
plotOutput(outputId = "png")
##output: png image
)
)
)
server <- function(input, output) {
# Histogram of the Old Faithful Geyser Data ----
# with requested number of bins
# This expression that generates a histogram is wrapped in a call
# to renderPlot to indicate that:
#
# 1. It is "reactive" and therefore should be automatically
# re-executed when inputs (input$bins) change
# 2. Its output type is a plot
output$distPlot <- renderPlot({
x <- faithful$waiting
bins <- seq(min(x), max(x), length.out = input$bins 1)
hist(x, breaks = bins, col = "#75AADB", border = "white",
xlab = "Waiting time to next eruption (in mins)",
main = "Histogram of waiting times")
})
###New function
output$png <- renderPlot({
pic = readPNG('path/to/image.png')
plot.new()
grid::grid.raster(pic)
})
}
shinyApp(ui = ui, server = server
)
… И отображает:
Комментарии:
1. Отличный ответ! Возникла эта проблема, и я перепробовал все. Следовало догадаться просто отобразить их на сервере!