Nothing
#' Convert data frame of counts to data frame of cases.
#' data frame must contain a column with frequencies (counts) as generated by
#' as.data.frame from a contingency table
#'
#' @param x a \code{data.frame} of counts generated from a contingency table.
#' @param countcol character string, name of the column of x containing the
#' counts. Default name of the column is 'Freq'.
#' @return data frame of cases of dimension (total number of counts as sum of
#' 'Freq' in x) times 2.
#' @examples
#'
#' counts_to_cases(as.data.frame(HairEyeColor[, , 1]), countcol = "Freq")
#'
#' @export counts_to_cases
#'
counts_to_cases <- function(x, countcol = "Freq") {
# Get the row indices to pull from x
idx <- rep.int(seq_len(nrow(x)), x[[countcol]])
# Drop count column
x[[countcol]] <- NULL
# Get the rows from x
x[idx, ]
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.