R/utils.R

Defines functions isNumeric

# Finds whether a variable is a number or a numeric string 
isNumeric <- function(x) {
	is.numeric(x) & !is.na(x)
}

Try the mulset package in your browser

Any scripts or data that you put into this service are public.

mulset documentation built on May 2, 2019, 12:37 p.m.