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 55 56
|
div(
class = "help-glossary-div",
withMathJax(),
br(),br(),
div(
withMathJax(),
class = "help-glossary-nav-container",
navlistPanel(
well = TRUE,
id = "glossary_navlist",
tabPanel(
"Effective sample size",
includeHTML("html/neff.html")
),
tabPanel(
"Monte Carlo uncertainty",
includeHTML("html/mcse.html")
),
tabPanel(
"Rhat",
includeHTML("html/rhat.html")
),
tabPanel(
"No-U-Turn Sampler (NUTS)",
includeHTML("html/nuts.html")
),
tabPanel(
"accept_stat",
includeHTML("html/accept_stat.html")
),
tabPanel(
"divergent",
withMathJax(),
includeHTML("html/ndivergent.html")
),
tabPanel(
"energy",
withMathJax(),
includeHTML("html/energy.html")
),
tabPanel(
"stepsize",
includeHTML("html/stepsize.html")
),
tabPanel(
"n_leapfrog",
includeHTML("html/nleapfrog.html")
),
tabPanel(
"treedepth",
includeHTML("html/treedepth.html")
)
)
),
br(),br()
)
|