如何为 R Shiny 中的列设置小数宽度?
Posted
技术标签:
【中文标题】如何为 R Shiny 中的列设置小数宽度?【英文标题】:How can I set decimal width for a column in R Shiny? 【发布时间】:2021-01-10 19:27:37 【问题描述】:我想在我的 R Shiny 仪表板中为 column()
元素设置小数宽度。例如,我需要 5 列,因此我需要每列 2.4 的宽度。
有办法吗?
【问题讨论】:
【参考方案1】:Shiny 的列宽基于Bootstrap 12-wide grid system。您只能指定整数。但是,您可以nest multiple columns 来实现细粒度的布局。
这是一个关于嵌套列的示例:
library(shiny)
ui <- fluidPage(fluidRow(
p(),
column(4, p(), style = "background-color: red;"),
column(4, p(), style = "background-color: green;"),
column(
4,
column(4, p(), style = "background-color: red;"),
column(7, p(), style = "background-color: green;"),
column(1, p(), style = "background-color: blue;")
),
))
server <- function(input, output, session)
shinyApp(ui, server)
作为替代方案,您可能需要检查接受 CSS 单元的?splitLayout
:
library(shiny)
ui <- fluidPage(splitLayout(
p("red", style = "background-color: red;"),
p("green", style = "background-color: green;"),
p("blue", style = "background-color: blue;"),
p("yellow", style = "background-color: yellow;"),
p("orange", style = "background-color: orange;"),
cellWidths = "20%"
))
server <- function(input, output, session)
shinyApp(ui, server)
【讨论】:
以上是关于如何为 R Shiny 中的列设置小数宽度?的主要内容,如果未能解决你的问题,请参考以下文章
如何为 Google 表格中单列中的每个值设置数字格式取决于值?
R Shiny DataTable如何防止包含超链接的列中的行选择/取消选择