1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
fluidRow(
column(
width = 3,
radioButtons(
"sampler_warmup",
label = h5("Warmup"),
choices = list(Omit = "omit", Include = "include"),
inline = TRUE
)
),
column(
width = 4,
radioButtons(
"sampler_report",
label = h5("Statistic"),
choices = list(
Mean = "average",
SD = "sd",
Max = "maximum",
Min = "minimum"
),
inline = TRUE
)
),
column(
width = 2,
numericInput(
"sampler_digits",
label = h5("Decimals"),
value = 4,
min = 0,
max = 10,
step = 1
)
)
)
|