R/rankings.R

Defines functions rankings

rankings <- function(x) {
  
  #
  # Calculate ranks and rankogram
  #
  
  nsim <- nrow(x)
  n.trts <- ncol(x)
  #
  rnk <- apply(x, 1, rank, ties.method = "random")
  #
  tab <- apply(rnk, 1, table)
  #
  if (is.list(tab)) {
    rankogram <- matrix(0, nrow = n.trts, ncol = n.trts)
    rownames(rankogram) <- names(tab)
    colnames(rankogram) <- seq_len(n.trts)
    ##
    for (i in names(tab))
      rankogram[i, names(tab[[i]])] <- tab[[i]][names(tab[[i]])]
  }
  else
    rankogram <- t(as.data.frame(tab))
  #
  rankogram <- rankogram / nsim
  
  #
  # Cumulative ranks and SUCRAs
  #
  
  cumrank <- t(apply(rankogram, 1, cumsum))
  sucras <- apply(cumrank[, -n.trts], 1, sum) / (n.trts - 1)
  
  #
  # Mean and median ranks
  #
  
  meanranks <- apply(col(rankogram) * rankogram, 1, sum)
  #
  getmed <- function(x) which(x >= 0.5)[1]
  medianranks <- apply(cumrank, 1, getmed)
  
  #
  # Return results
  #
  
  res <- list(sucras = sucras,
              rankogram = rankogram,
              cumrank = cumrank,
              #
              meanranks = meanranks,
              medianranks = medianranks,
              #
              nsim = nsim)
  #
  res
}

Try the netmeta package in your browser

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

netmeta documentation built on Jan. 28, 2026, 9:06 a.m.