Learn R Programming

tester (version 0.2.0)

is_multidim: Test if an object is multi-dimensional

Description

Returns TRUE if an object is a matrix or data frame with at least 2 rows and at least 2 columns, FALSE otherwise

Usage

is_multidim(x)

Value

whether x is multi-dimensional

Arguments

x

an R object

See Also

is_one_dim

Examples

Run this code
# general matrix (nrow>1, ncol>1)
is_multidim(matrix(1:9, 3, 3))  # TRUE

# general data frame
is_multidim(iris)  # TRUE

# vector
is_multidim(1:5)  # FALSE

# factor
is_multidim(iris$Species)  # FALSE

# one row matrix
is_multidim(matrix(1:5, 1, 5))  # FALSE

# one column matrix
is_multidim(matrix(1:5, 5, 1))  # FALSE

Run the code above in your browser using DataLab