R/Shiny/bs4Dash의 기초 ⑦

5869 단어 RShinybs4DashAdminLTE

body에 카드 추가



이런 느낌(잡). 카드의 기능은 여러가지 기능이 있을 것 같다.
library(shiny)
library(bs4Dash)

ui <- bs4DashPage(
  navbar = bs4DashNavbar(),
  sidebar = bs4DashSidebar(
    bs4SidebarMenu(
      bs4SidebarHeader(title = "Iris"),
      bs4SidebarMenuItem(text = "X", tabName = "x")
    )
  ),
  body = bs4DashBody(
    bs4TabItems(
      bs4TabItem(
        tabName = "x",
        bs4Card(
          plotOutput(outputId = "a"),
          inputId = "a",
          title = "a",
          status = "primary"
        )
      )
    )
  ),
  controlbar = bs4DashControlbar(),
  footer = bs4DashFooter(),
  title = "yono2844"
)

server <- function(input, output, session) {
  output$a <- renderPlot(expr = {
    plot(iris$Sepal.Length, iris$Sepal.Width)
  })
}

shinyApp(ui = ui, server = server)

좋은 웹페이지 즐겨찾기