is_numeric_str: Which elements of a character vector are numeric

Description Usage Arguments Value Functions Examples

View source: R/util.r

Description

Takes a character vector and returns a logical vector of the same length, indicating which values are numeric. NA is considered non-numeric. NA is never returned from this function.

Usage

1
2
3
is_numeric_str(x, extras = c(".", "NA", NA))

areNumeric(x, extras = c(".", "NA", NA))

Arguments

x

character vector

extras

character vector containing acceptable alternatives to numeric values which will result in returning TRUE for that element. Default is c(".", "NA", NA).

Value

logical vector of same length as input

Functions

Examples

1
2
3
areNumeric(c("1", "2", "3"))
areNumeric(c("1L", "2.2"))
areNumeric(c("NA", NA, ".", "", "-1.9"))

jwutil documentation built on May 7, 2019, 1:03 a.m.