我有一个像这样的闪亮应用程序:
server.R:
library(shiny)
function(input, output) { NULL }
Run Code Online (Sandbox Code Playgroud)
和ui.R:
library(shiny)
pageWithSidebar(
headerPanel("side-by-side"),
fluidRow(
column(2),
column(4,
wellPanel(
selectInput(inputId = "options", label = "some text",
choices = list(a = 0, b = 1)))
)
),
fluidRow(
h3("bla bla")
)
)
Run Code Online (Sandbox Code Playgroud)
我希望在它旁边有selectInput标签,而不是上面.你知道怎么做吗?
我发现了这个:将闪亮的小部件放在它们的标题旁边, 但它对我不起作用.