0
問題はsidebarPanel
オブジェクトの右側にhelpText
オブジェクトを配置したいという問題です。ここに私のコード:サイドバーとtextInputオブジェクトを1行に作成する方法
ui <- (fluidPage(
# Application title
fluidRow(
column(12,
sidebarPanel(
titlePanel("Visualization"),
actionButton("goButton", "Go"),
actionButton("reset", "Reset"),
actionButton("pause", "Pause"),
actionButton("resume", "Resume"),
textInput("initial", "Initial Value", value = "c(-5, 5, 5)") ,
textInput("targ", "Target", value = "c(0, 0, 0)"),
textInput("func", "Objective Function", value = "x1^2 + exp(x2^2) + 5 + x3^2")
)),
column(12,helpText('XXX'))
)
))
しかし、helpTextはサイドバーパネルのすぐ下にあります。これを修正し、正しい空白領域にhelpTextオブジェクトを作成するにはどうすればよいですか?おかげさまで
1は、ほぼ任意のレイアウトを作成することができますので、あなたの質問に他の可能な答えがたくさんありますグリッドシステム:http://shiny.rstudio.com/articles/layout-guide.html –