decumented package

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-01-16 11:45:04 +01:00
commit 49695a5f41
No known key found for this signature in database
13 changed files with 284 additions and 3 deletions

21
man/is_consecutive.Rd Normal file
View file

@ -0,0 +1,21 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data-summary.R
\name{is_consecutive}
\alias{is_consecutive}
\title{Checks if elements in vector are equally spaced as indication of ID}
\usage{
is_consecutive(data)
}
\arguments{
\item{data}{vector}
}
\value{
logical
}
\description{
Checks if elements in vector are equally spaced as indication of ID
}
\examples{
1:10 |> is_consecutive()
sample(1:100,40) |> is_consecutive()
}