包括情节
在 shinyApp 中包含绘图的最简单方法是在服务器中的 ui 和 renderPlot
中使用 plotOutput
。这将适用于基本图形以及 ggPlot
s
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)