inst/app/men_cipi/app.R

#' men_cipi
suppressPackageStartupMessages({
  library("shiny")
  library("shinyWidgets")
  library("shinydashboard")
  library("shinydashboardPlus")
  library("HKRbook")
})
#
#oldpar <- graphics::par(no.readonly = TRUE)
#on.exit(resetpar(oldpar))
#
files<- getShinyOption("mmstat")
if (is.null(files)) files <- mmstat.rds("TITANIC", "CREDIT", "BOSTONHOUSING")
#browser()
mmstat.set(vartype = "binary", UI = NULL, dataset = NULL, confint = list())  # reset everything
mmstat.ui.elem("conflevel", "confidenceLevel")
mmstat.ui.elem("go_reset",  actionGroupButtons, inputIds=c("go", "reset"), labels=gettext(c("Draw sample", "Reset")))
mmstat.ui.elem('speed',     'speedSlider')
mmstat.ui.elem("dataset",   "dataSet", choices = mmstat.getDataNames(files))
mmstat.ui.elem("variable",  "variable1", vartype = 'binary')
mmstat.ui.elem("size",      "sampleSize")
mmstat.ui.elem("cex",       "fontSize")

CIpi  <- function (x, oma, xlim = NULL) {
  n <- length(x)
  pi   <- prop.table(table(x))[1]
  dist <- stats::qnorm(1 - (1 - oma) / 2) * sqrt(pi * (1 - pi) / n)
  upper <- pi + dist
  lower <- pi - dist
  if (is.null(xlim)) {
    lim <- c(lower, upper)
  } else {
    lim   <- mmstat.merge(xlim, c(lower, upper))
  }
  list(
    upper = upper,
    lower = lower,
    pi = pi,
    oma = oma,
    n = n,
    xlim = lim
  )
}

drawVariableValues <-
  function (x,
            jitter,
            ylim,
            box.param = NULL,
            points.param = NULL,
            param = NULL) {
    if (is.numeric(x) || is.integer(x)) {
      if (is.list(points.param) ||
          is.null(points.param) || points.param) {
        points.param$x <- x
        points.param$y <- ylim[1] + diff(ylim) * jitter
        suppressWarnings(do.call(graphics::points, points.param))
      }
      if (is.list(box.param) || is.null(box.param) || box.param) {
        q <- stats::quantile(x, c(0.25, 0.5, 0.75))
        box.param$xleft   <- q[1]
        box.param$xright  <- q[3]
        box.param$ybottom <- ylim[1]
        box.param$ytop    <- ylim[2]
        suppressWarnings(do.call(graphics::rect, box.param))
        box.param$x <- c(q[2], q[2])
        box.param$y <- ylim
        if (!is.null(box.param$border))
          box.param$col <- box.param$border
        suppressWarnings(do.call(graphics::lines, box.param))
      }
    }
    if (is.factor(x)) {
      tab <- prop.table(table(x))
      xp  <- as.numeric(c(0, cumsum(tab)))
      level <- param$level
      mmcol <- mmstat.get("col")
      for (i in seq(tab)) {
        args         <- param
        args$xleft   <- xp[i]
        args$xright  <- xp[i + 1]
        args$ybottom <- ylim[1]
        args$ytop    <- ylim[2]
        args$col     <- mmcol[[i + param$col]]
        args$level   <- NULL
        suppressWarnings(do.call(graphics::rect, args))
        if (!is.null(level) && level) {
          args        <- param
          args$x      <- mean((xp[i:(i + 1)]))
          args$y      <- mean(ylim)
          args$labels <- gettext(names(tab)[i])
          args$level  <- NULL
          args$border <- NULL
          suppressWarnings(do.call(graphics::text, args))
        }
      }
    }
  }

shinyApp(
  ui = dashboardPage(
    dashboardHeader(title = "MM*Stat",
                    leftUi = tagList(
                      dropdownBlock(
                        id    = "data",
                        title = gettext("Data choice"),
                        badgeStatus = NULL,
                        uiOutput("variableUI"),
                        uiOutput("datasetUI")
                      ),
                      dropdownBlock(
                        id    = "options",
                        title = gettext("Options"),
                        badgeStatus = NULL,
                        uiOutput("cexUI")
                      )
                    )
    ),
    dashboardSidebar(minified=FALSE,
                     uiOutput("conflevelUI"),
                     uiOutput("sizeUI"),
                     uiOutput("go_resetUI"),
                     uiOutput("speedUI")
    ),
    dashboardBody( fluidRow(column(
      width = 12,
      box(width=12,
        title = gettext("Confidence intervals for the proportion"),
        status = "primary",
        plotOutput("outputConfPlot"),
        plotOutput("outputSamplePlot", height = "200px")
      )
    )))
  ),
  server = function(input, output, session) {
    output$conflevelUI <- renderUI({
      mmstat.ui.call('conflevel')
    })
    output$go_resetUI        <- renderUI({
      mmstat.ui.call('go_reset')
    })
    output$speedUI     <- renderUI({
      mmstat.ui.call('speed')
    })
    output$datasetUI   <- renderUI({
      mmstat.ui.call('dataset')
    })
    output$cexUI       <- renderUI({
      mmstat.ui.call('cex')
    })

    output$variableUI <- renderUI({
      inp  <- mmstat.getValues(NULL, dataset = input$dataset)
      mmstat.ui.call('variable',
                     choices = mmstat.getVarNames(inp$dataset, 'binary'))
    })

    output$sizeUI <- renderUI({
      var <- getVar()
      mmstat.ui.call('size',
                     ticks = var$ticks,
                     max = length(var$ticks))
    })

    getVar <- reactive({
      inp         <- mmstat.getValues(NULL,
                                      dataset = isolate(input$dataset),
                                      variable = input$variable)
      var         <- mmstat.getVar(inp$dataset, inp$variable)
      var$ticks   <- mmstat.ticks(var$n, nmin = 30)
      var
    })

    getSize   <- reactive({
      var <- getVar()
      if (is.null(input$size))
        return(var$ticks[1])
      #if (shiny$Version=="0.11") return(var$ticks[input$size+1])
      #var$ticks[input$size]
      return(var$ticks[input$size + 1])
    })

    resetCI <- reactive ({
      input$reset
      mmstat.set(confint=vector("list", 0))
    })

    drawSample <- reactive ({
      mmstat.log(sprintf('drawSample'))
      inp <- mmstat.getValues (
        list(go=0, reset=0),
        go         = input$go,
        reset      = input$reset,
        speed      = input$speed,
        conflevel  = input$conflevel
      )
      if (inp$speed > 0)
        invalidateLater(500 / inp$speed, session)
      var      <- getVar()
      index    <-
        sample(length(var$values),
               size = getSize(),
               replace = T)
      sample   <- var$values[index]
      confint  <- mmstat.get("confint")
      nci      <- length(confint)
      xlim     <- if (nci > 0) confint[[nci]]$xlim else NULL
      confint[[nci + 1]] <- CIpi(sample, mmstat.get("UI")$conflevel$ticks[inp$conflevel]/100, xlim)
      mmstat.set(confint=confint)
      nci      <- length(confint)
      index
    })

    output$outputConfPlot <- renderPlot({
      mmstat.log(sprintf('outputConfPlot'))
      resetCI()
      var   <- getVar()
      index <- drawSample()
      inp   <- mmstat.getValues(NULL, cex = input$cex)
      confint <- mmstat.get("confint")
      mmcol   <- mmstat.get("col")
      nci   <- length(confint)
      if (nci) {
        graphics::par (mar = c(2, 0, 2, 0))
        plot (
          c(0, 1),
          c(0, 0),
          type = "n",
          ylim = c(1.5, 2.0 + 0.2 * nci),
          axes = F,
          cex = 0.5,
          col = mmcol[[1]],
          main = sprintf(gettext("%i confidence interval(s)"), nci),
          cex.axis = inp$cex,
          cex.lab = inp$cex,
          cex.main = 1.2 * inp$cex,
          cex.sub = inp$cex
        )
        graphics::text(
          var$prop[1],
          1.5,
          sprintf("%.3f", var$prop[1]),
          col = mmcol[[1]],
          pos = 4,
          cex = inp$cex
        )

        usr <- graphics::par("usr")
        mmstat.axis(1, usr[1:2], cex.axis = inp$cex)
        # #   points(sample, 1.5+0.5*jitter[index], pch=19, col=mmstat$col[[1]])
        seqi <- 1:nci
        lwd  <- 2 - (nci > 10)
        for (i in seqi) {
          yi  <- 1.95 + 0.2 * i
          rng <- c(confint[[i]]$lower, confint[[i]]$upper)
          col <-
            ifelse((rng[1] - var$prop[1]) > 0 ||
                     (rng[2] - var$prop[1]) < 0,
                   'black',
                   mmcol[[2]])
          graphics::lines(rng,
                          c(yi, yi),
                          lwd = lwd,
                          lty = 'solid',
                          col = col)
          graphics::lines(
            c(rng[1], rng[1]),
            c(yi - 0.05, yi + 0.05),
            lwd = lwd,
            lty = 'solid',
            col = col
          )
          graphics::lines(
            c(rng[2], rng[2]),
            c(yi - 0.05, yi + 0.05),
            lwd = lwd,
            lty = 'solid',
            col = col
          )
          graphics::lines(
            c(confint[[i]]$pi, confint[[i]]$pi),
            c(yi - 0.05, yi + 0.05),
            lwd = lwd,
            lty = 'solid',
            col = col
          )
        }
        size  <- sapply(confint, '[[', 'n')
        index <- 1 + c(0, which(diff(size) != 0))
        posx  <- mmstat.pos(usr[1:2], c(0.05, 0.95))
        graphics::text(
          posx[1],
          1.95 + 0.2 * index,
          labels = sprintf('%.0f', size[index]),
          cex = inp$cex
        )
        oma  <- sapply(confint, '[[', 'oma')
        index <- 1 + c(0, which(diff(oma) != 0))
        graphics::text(posx[2],
                       1.95 + 0.2 * index,
                       labels = sprintf('%.3f', oma[index]),
                       cex = inp$cex)
        graphics::axis(
          3,
          at = posx,
          labels = c(expression('n'), expression(alpha)),
          cex.axis = inp$cex
        )
        graphics::abline(
          v = var$prop[1],
          col = mmcol[[1]],
          lwd = 3,
          lty = "dotted"
        )

        box()
      }
    })

    output$outputSamplePlot <- renderPlot({
      mmstat.log(sprintf('outputSamplePlot'))
      #browser()
      var   <- getVar()
      index <- drawSample()
      inp   <- mmstat.getValues(NULL, cex = input$cex)
      graphics::par (mar = c(5, 0, 2, 0))
      plot(
        c(0, 1),
        c(-0.05, 1.0),
        type = "n",
        axes = F,
        main = gettext("Population and sample"),
        xlab = var$xlab,
        sub = var$sub,
        cex.axis = inp$cex,
        cex.lab = inp$cex,
        cex.main = 1.2 * inp$cex,
        cex.sub = inp$cex
      )
      usr <- graphics::par("usr")
      mmstat.axis(1, usr[1:2], cex.axis = inp$cex)
      drawVariableValues(
        var$values,
        jitter = NULL,
        ylim = c(0, 0.45),
        param = list(
          cex = inp$cex,
          col = 0,
          border = NA,
          level = T
        )
      )
      drawVariableValues(
        var$values[index],
        jitter = NULL,
        ylim = 0.5 + c(0, 0.45 * sqrt(length(index) / var$n)),
        param = list(
          cex = inp$cex,
          col = 8,
          border = NA,
          level = F
        )
      )

      box()
    })

    output$logText <- renderText({
      mmstat.getLog(session)
    })
  },
  onStart = function() {
    oldpar <- par(no.readonly = TRUE)
    onStop(function() { resetpar(oldpar) })
  }
)

Try the HKRbook package in your browser

Any scripts or data that you put into this service are public.

HKRbook documentation built on Oct. 6, 2022, 9:06 a.m.