ниже - блестящее приложение, если мне нужно добавить в него немного css (прилагается ниже), где я могу добавить его, чтобы оно отображалось в r блестящем приложении
css
<style>
.bs-example{
margin: 60px;
}
</style>
ui.R
library(shiny)
shinyUI(fluidPage(
titlePanel("Stateful"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
),
# Show a plot of the generated distribution
mainPanel(
tabsetPanel(
id="inTabset",
tabPanel("Tab 1",actionButton("switch_tab", "Go to the third tab")),
tabPanel("Tab 2", "there!"),
tabPanel("Tab 3", "there!"))
)
)
))
server.R
library(shiny)
# Define server logic required to draw a histogram
shinyServer(function(input, output) {
})