R/plot_rand.R

Defines functions plot_rand

Documented in plot_rand

#' Plot random distribution
#' 
#' This function takes the return of the rand_test function and creates a 
#' histogram with the distribution of the rand sample statistics.
#'
#' @param object Object returned from the rand_test() function
#' @param xlab Label for the x-axis.
#' @param ylab Label for the y-axis.
#' @param type 'hist' or 'xy'.
#' @param title Plot title.
#' @param text_observed Text for marking the number of observed statistic.
#' @param color Bar color.
#' @param ... Further arguments passed to the plot function.
#' @export
plot_rand <- function(object, 
                      type = "hist",
                      xlab = NULL, 
                      ylab = NULL, 
                      title = NULL, 
                      text_observed = "observed", 
                      color = "lightgrey", 
                      ...) {
  
  if (type == "xy") {
    if (is.null(ylab)) ylab <- object$statistic
    if (is.null(xlab)) xlab <- "Start phase B"
    plot(
      object$distribution_startpoints[[1]], 
      object$distribution, 
      xlim = c(min(object$distribution_startpoints), max(object$distribution_startpoints)),
      ylab = ylab, xlab = xlab, main = title,
      xaxt = "n"
    )
    axis(1, at = object$distribution_startpoints[[1]])
    points(object$n1 + 1, object$observed.statistic, col = "blue", pch = 19)
    x <- which(object$distribution > object$observed.statistic)
    y <- object$distribution[x]
    points(x+1, y, col = "red", pch = 19)
    
    if (object$testdirection == "greater") 
      abline(h = max(object$distribution), col = "red")
    else
      abline(h = min(object$distribution), col = "red")
  }
  
  
  if (type == "hist") {
    if (is.null(ylab)) ylab <- "Frequency"
    if (is.null(title)) title <- "Random distribution"
    h <- hist(object$distribution, plot = FALSE)
    lab <- paste0(round(h$counts / length(object$distribution) * 100, 0), "%")
    xlim <- c(min(h$breaks, na.rm = TRUE), max(h$breaks, na.rm = TRUE))
    ylim <- round(max(h$counts * 1.2))
    if (object$observed.statistic < xlim[1]) xlim[1] <- object$observed.statistic
    if (object$observed.statistic > xlim[2]) xlim[2] <- object$observed.statistic
    
    if (is.null(xlab)) xlab <- object$statistic
    hist(
      object$distribution,
      xlab = xlab,
      labels = lab,
      xlim = xlim,
      ylim = c(0, ylim),
      ylab = ylab,
      main = title,
      col = color
    )
    abline(v = object$observed.statistic, lty = 2, lwd = 2, col = "grey")
    if (object$p.value < 0.5) pos <- 2 else pos <- 4
    text(object$observed.statistic, ylim, text_observed, pos = pos)
  }

}
jazznbass/scan_develop documentation built on Sept. 9, 2024, 6:23 a.m.