shiny (version 0.9.1)

column: Create a column within a UI definition

Description

Create a column for use within a fluidRow or fixedRow

Usage

column(width, ..., offset = 0)

Arguments

Value

A column that can be included within a fluidRow or fixedRow.

See Also

fluidRow, fixedRow.

Examples

Run this code
fluidRow(
  column(4,
    sliderInput("obs", "Number of observations:",
                min = 1, max = 1000, value = 500)
  ),
  column(8,
    plotOutput("distPlot")
  )
)

fluidRow(
  column(width = 4,
    "4"
  ),
  column(width = 3, offset = 2,
    "3 offset 2"
  )
)

Run the code above in your browser using DataCamp Workspace