tester (version 0.1.7)

is_integer: Is integer

Description

Test if a number is an integer
Use is_not_integer to test the opposite condition

Usage

is_integer(x)

Arguments

x

an R object

See Also

is_natural

Examples

Run this code
is_integer(1) # TRUE
is_integer(-3) # TRUE
is_integer(pi) # FALSE
is_integer(iris$Species)

M = matrix(seq(-3, 2), 2, 3)
is_integer(M)

Run the code above in your browser using DataLab