detects if a character vector is only made with figures. Useful when you

is_full_figures(.)

Arguments

.

a vector of character (and eventually NA's)

Value

a boolean

Examples

is_full_figures(c(NA,"0","25.3"))
#> [1] TRUE
is_full_figures((c(NA,"0","25_3")))
#> [1] TRUE