File: diagnostics_sample.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 (27 lines) | stat: -rw-r--r-- 702 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
# sample (accept_stat, lp)
div(class = "diagnostics-navlist-tabpanel",
    fluidRow(
      column(
        width = 7,
        fluidRow(
          column(
            width = 6,
            help_dynamic,
            dygraphOutput_175px("dynamic_trace_diagnostic_lp_out"),
            br(),
            dygraphOutput_175px("dynamic_trace_diagnostic_accept_stat_out")
          ),
          column(
            width = 6,
            help_lines,
            plotOutput_200px("lp_hist_out"),
            br(),
            plotOutput_200px("accept_stat_hist_out")
          )
        )), 
      column(
        width = 5,
        help_points,
        plotOutput_400px("accept_stat_vs_lp_out")
      )
    ))