這篇文章告訴大家如何製作圖表
library(shiny)
sidebarPanel(sliderInput(inputId = "bins",
label = "Number of bins:",
min = 1,
max = 50,
value = 30))
mainPanel(plotOutput(outputId = "distPlot"))