R/seq_nrow.R

Defines functions seq_nrow

Documented in seq_nrow

#' Generate sequence of row numbers
#' @param x An object that admits an \code{nrow}.
#' 
#' @return Equivalent to \code{seq_len(nrow(x))}
#' @export

seq_nrow <- function(x) seq_len(nrow(x)) # nocov

Try the hutils package in your browser

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

hutils documentation built on April 13, 2022, 5:23 p.m.