File: diagnostics_help.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 (54 lines) | stat: -rw-r--r-- 922 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
navlistPanel(
  well = FALSE,
  widths = c(2, 10),
  id = "diagnostics_help_navlist",
  tabPanel(
    "accept_stat",
    withMathJax(),
    includeHTML("html/accept_stat.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "divergent",
    withMathJax(),
    includeHTML("html/ndivergent.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "energy",
    withMathJax(),
    includeHTML("html/energy.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "stepsize",
    withMathJax(),
    includeHTML("html/stepsize.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "n_leapfrog",
    withMathJax(),
    includeHTML("html/nleapfrog.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "treedepth",
    withMathJax(),
    includeHTML("html/treedepth.html"),
    hr(),
    stan_manual()
  ),
  tabPanel(
    "NUTS",
    withMathJax(),
    includeHTML("html/nuts.html"),
    hr(),
    stan_manual()
  )
)