Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀

This commit is contained in:
agdamsbo 2025-11-19 13:25:44 +00:00
commit 6d545337de
328 changed files with 12930 additions and 1662 deletions

View file

@ -0,0 +1,28 @@
# Checks if elements in vector are equally spaced as indication of ID
Checks if elements in vector are equally spaced as indication of ID
## Usage
``` r
is_consecutive(data)
```
## Arguments
- data:
vector
## Value
logical
## Examples
``` r
1:10 |> is_consecutive()
#> [1] TRUE
sample(1:100,40) |> is_consecutive()
#> [1] FALSE
```