Nothing
#' Create a frequency table
#'
#' @description The function creates a frequency table with percentages for the selected categorical variable.
#' @param x Vector with the values of a categorical variable.
#' @param dec Number of decimal places for percentages.
#' @param cum whether to calculate cumulative frequencies and percentages (default \code{TRUE}).
#' @param \dots Arguments passed to function \code{table}.
#' @return A frequency table (as a dataframe).
#' @examples
#' freqTab(mtcars[,2], dec = 1)
#' @author Aleš Žiberna
#' @export
freqTab <- function (x, dec = 2, cum = TRUE, ...){
tbl <- table(x, ...)
if (cum) cumFreq <- cumsum(tbl)
perc <- tbl/sum(tbl) * 100
if (cum) cumPerc <- cumsum(perc)
if (!is.null(dec)) {
perc <- round(perc, dec)
if (cum) cumPerc <- round(cumPerc, dec)
}
if (cum) frekTab <- as.data.frame(cbind(Freq. = tbl, `Cum. freq.` = cumFreq, `%` = perc, `Cum. %` = cumPerc))
if (!cum) frekTab <- as.data.frame(cbind(Freq. = tbl, `%` = perc))
return(frekTab)
}
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.