包括情節

在 shinyApp 中包含繪圖的最簡單方法是在伺服器中的 ui 和 renderPlot 中使用 plotOutput。這將適用於基本圖形以及 ggPlots

library(shiny)
library(ggplot2)

ui <- fluidPage(
  plotOutput('myPlot'),
  plotOutput('myGgPlot')
)

server <- function(input, output, session){
  output$myPlot = renderPlot({
    hist(rnorm(1000))
  })
  output$myGgPlot <- renderPlot({
    ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) + geom_point()
  })
}

shinyApp(ui, server)