R/table_all_integers.R

Defines functions table_all_integers

Documented in table_all_integers

#' Table all integers from 1 to n
#'
#' @param x A vector of integers.
#' @param n The maximum integer value.
#' 
#' @return A 1D array of class `"table"` representing the frequency of each integer from 1 to n.
#'
#' @export
#'
#' @examples
#' table_all_integers(c(2, 3, 5, 3, 5, 3), 7)
#' 
table_all_integers <- function(x, n) {
  table(factor(x, levels = seq_len(n)))
}

Try the SSBtools package in your browser

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

SSBtools documentation built on April 3, 2025, 5:38 p.m.