File: sampler_stats_customize.R

package info (click to toggle)
r-cran-shinystan 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,172 kB
  • sloc: sh: 15; makefile: 7
file content (36 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (2)
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
    )
  )
)