mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
516 B
516 B
Determine if any variable in data frame character and contains recognized delimiters
Determine if any variable in data frame character and contains recognized delimiters
Usage
is_splittable(data)
Arguments
-
data:
vector or data.frame
Value
logical
Examples
any(apply(mtcars, 2, is_splittable))
#> [1] FALSE
is_splittable(mtcars)
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE