R/Tabulate.R

Defines functions colTabulate rowTabulate

Documented in colTabulate rowTabulate

#[export]
rowTabulate <- function(x, max_number = max(x)) {
  .Call(Rfast_row_tabulate,x,max_number)
}

#[export]
colTabulate <- function(x, max_number = max(x)) {
  .Call(Rfast_col_tabulate,x,max_number)
}

Try the Rfast package in your browser

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

Rfast documentation built on Nov. 9, 2023, 5:06 p.m.